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