Warn pointer to signed integer cast for ilp32
[official-gcc.git] / gcc / testsuite / gcc.dg / uninit-13.c
blob631e8de3ada6d6f49db5df96e3bfe976c3bcdc96
1 /* { dg-do compile } */
2 /* { dg-options "-O -Wuninitialized" } */
4 typedef _Complex float C;
5 C foo()
7 C f;
8 __imag__ f = 0; /* { dg-warning "is used" "unconditional" } */
9 return f;