xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/PR3709-int-to-pointer-sign.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -emit-llvm %s -o - -O1 -triple=x86_64-gnu-linux | grep "i64 -1"
2 
3 // PR3709
a()4 long long a() { return (long long)(int*)-1;}
5 
6