* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20030605-1.c
blobf5e102318b2d907d46a705d678f5871342aa8418
1 /* Test for proper preparation of the comparison operands for
2 generation of a conditional trap. Produced unrecognizable
3 rtl on Sparc. */
5 struct blah { char *b_data; };
7 void set_bh_page(struct blah *bh, unsigned long offset)
9 if ((1UL << 12 ) <= offset)
10 __builtin_trap() ;
11 bh->b_data = (char *)offset;