OSDN Git Service

2012-01-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / fold-compare-6.c
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-original" } */
3
4 char digs[] = "0123456789";
5 int foo (void)
6 {
7   int xlcbug = 1 / (&(digs + 5)[-2 + (_Bool) 1] == &digs[4] ? 1 : -1);
8   return xlcbug;
9 }
10
11 /* { dg-final { scan-tree-dump "xlcbug = 1;" "original" } } */
12 /* { dg-final { cleanup-tree-dump "original" } } */