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