Files
clang-p2996/clang/test/CodeGen/pointer-to-int.c
2007-10-31 23:18:02 +00:00

7 lines
68 B
C

// RUN: clang -emit-llvm %s
int test(void* i)
{
return (int)i;
}