Delete unused PoisonChecking utility pass
[llvm-project.git] / clang / test / CodeGen / PR3709-int-to-pointer-sign.c
blobf38675908d14e91b0717bc37f321b72de750ca0a
1 // RUN: %clang_cc1 -emit-llvm %s -o - -O1 -triple=x86_64-gnu-linux | grep "i64 -1"
3 // PR3709
4 long long a(void) { return (long long)(int*)-1;}