2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr78580.c
blobfcf36f1be844292bb8e6adc42c693b5eede2343b
1 /* PR rtl-optimization/78580 */
2 /* { dg-do compile } */
3 /* { dg-options "-O0 -ffixed-ebx" } */
5 extern const signed char a;
7 int
8 foo (signed char x)
10 return x;
13 int
14 main ()
16 foo (a);
17 return 0;