PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / c-c++-common / pr55771.c
blob16f02442c111b7a997cb9c22783bbbb6098a9dcc
1 /* { dg-do run } */
3 float global;
4 int main()
6 unsigned long z = 1;
7 float x = -z;
8 global = x;
9 if (global < 0)
10 __builtin_abort ();
11 return 0;