]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/test/CodeGen/int-to-pointer.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGen / int-to-pointer.c
CommitLineData
223e47cc
LB
1// RUN: %clang_cc1 -emit-llvm %s -o %t
2
3void *test(int i)
4{
5 return (void *)i;
6}