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