Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
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
;
}