xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/pointer-to-int.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -emit-llvm %s -o -
2 
test(void * i)3 int test(void* i)
4 {
5   return (int)i;
6 }
7 
8 // rdar://6093986
test2(void)9 int test2(void) {
10   float x[2];
11   return x;
12 }
13 
14