* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.dg / 20041109-1.c
blob8b072339dd885ec1785a1264bde44c2a7f24b648
1 /* This used to ICE due to a literal pool handling bug on s390x. */
3 /* { dg-do compile { target s390*-*-* } } */
4 /* { dg-options "-O2 -fno-omit-frame-pointer" } */
6 static struct table { int x; } table[3];
8 int test (void)
10 struct table *t;
12 for (t = table; t < &table[3]; t++)
13 asm volatile ("" : : : "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "12");
15 for (t = table; t < &table[3]; t++)
16 if (t->x)
17 return 1;
19 return 0;