Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / lto / 20090120_0.c
blob6c69a9918b2dd3742822eeae80fbc05f7959d103
1 /* { dg-lto-options {{-flto -funsigned-char}} } */
3 extern void abort ();
5 char c = 0xff;
7 int
8 main ()
10 int i = (unsigned) c;
11 if (i < 0)
12 abort ();
13 return 0;