2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr51879-7.c
blob6c1d3209c929a719acc14a3b89e98128f427dbab
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre" } */
4 int bar (int);
6 int z;
8 void
9 foo (int y)
11 if (y == 6)
12 z = 5;
13 else
14 z = 5;
17 /* { dg-final { scan-tree-dump-times "z = 5" 1 "pre"} } */
18 /* { dg-final { cleanup-tree-dump "pre" } } */