freebsd-dev/test/CodeGen/int-to-pointer.c
2009-06-02 17:58:47 +00:00

7 lines
80 B
C

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