modula2: M2MetaError.{def,mod} and P2SymBuild.mod further cleanup
[official-gcc.git] / gcc / testsuite / gcc.dg / pr115092.c
blobc9047f4d321a574820e6f0fe04836fd872922288
1 /* PR rtl-optimization/115092 */
2 /* { dg-do run } */
3 /* { dg-options "-O1 -fgcse -ftree-pre -fno-tree-dominator-opts -fno-tree-fre -fno-guess-branch-probability" } */
5 int a, b, c = 1, d, e;
7 int
8 main ()
10 int f, g = a;
11 b = -2;
12 f = -(1 >> ((c && b) & ~a));
13 if (f <= b)
14 d = g / e;
15 return 0;