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