[flang] Don't needlessly instantiate distinct UNSIGNED cases for FINDLOC (#120471)
[llvm-project.git] / clang / test / CodeGen / pointer-to-int.c
blob76bb4159b365698830b675779c40af0a2295df9f
1 // RUN: %clang_cc1 -emit-llvm -Wno-int-conversion %s -o -
3 int test(void* i)
5 return (int)i;
8 int test2(void) {
9 float x[2];
10 return x;