Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
e8904e992ca5e821b199c4577e8b5e5b17a33b1d
/
.
/
test
/
CodeGen
/
pointer-to-int.c
blob: a3eaf91bc161c7769c72294f124f91483516fa02 [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm %s -o -
int
test
(
void
*
i
)
{
return
(
int
)
i
;
}
// rdar://6093986
int
test2
(
void
)
{
float
x
[
2
];
return
x
;
}