xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/int-to-pointer.c (revision 5d5fbe79c1b60734f34c69330aec5496644e8651)
1 // RUN: %clang_cc1 -emit-llvm %s -o %t
2 
3 void *test(int i)
4 {
5   return (void *)i;
6 }
7