PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030917-1.c
blobc53c4c9e1ec19f8660c12df99fa00784ea1fc9ac
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized -std=gnu89" } */
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"} } */