hanchenye-llvm-project/clang/test/CodeGen/pointer-to-int.c

7 lines
68 B
C

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