PR tree-optimization/81384 - built-in form of strnlen missing
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20040319-1.c
blob357932d9b247abd7db2f8f9e6343f2ba9f32eea5
1 int
2 blah (int zzz)
4 int foo;
5 if (zzz >= 0)
6 return 1;
7 foo = (zzz >= 0 ? (zzz) : -(zzz));
8 return foo;
11 main()
13 if (blah (-1) != 1)
14 abort ();
15 else
16 exit (0);