Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030917-1.c
blobeb1f5ec7d68a8c65edcc3bb5ea8b56cbe6cf94ff
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
5 extern int board[];
7 void
8 findbestextension (int blah, int blah2)
10 int defval;
11 defval = def_val (board[blah2]);
12 if (blah)
13 defval = 0;
14 foo (defval);
17 /* The argument to "foo" should be a variable, not a constant. */
18 /* { dg-final { scan-tree-dump-times "foo .defval" 1 "optimized"} } */
19 /* { dg-final { cleanup-tree-dump "optimized" } } */