2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr50763.c
blob695b61c75f02345164c0b535daeb42a88592f499
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-pre" } */
4 int bar (int i);
6 void
7 foo (int c, int d)
9 if (bar (c))
10 bar (c);
11 d = 33;
12 while (c == d);
15 /* { dg-final { scan-tree-dump-times "== 33" 2 "pre"} } */
16 /* { dg-final { cleanup-tree-dump "pre" } } */