xref
: /
llvm-project-15.0.7
/
clang
/
test
/
CodeGen
/
pointer-arithmetic.c
(revision 3d072bea)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
// RUN: clang -emit-llvm %s
2
3
typedef
int
Int
;
4
5
int
test1
(
int
*
a
,
Int
*
b
) {
return
a
-
b
; }
6