diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/tree-ssa/loop-8.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/loop-8.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/loop-8.c b/gcc/testsuite/gcc.dg/tree-ssa/loop-8.c index 9718aad33cf..de439c7199f 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/loop-8.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/loop-8.c @@ -1,7 +1,7 @@ /* A test for strength reduction of ivs with nonconstant step. */ /* { dg-do compile } */ -/* { dg-options "-O1 -fdump-tree-vars" } */ +/* { dg-options "-O1 -fdump-tree-optimized" } */ int bar (void); @@ -19,7 +19,7 @@ void xxx (void) the step, we need to calculate step * sizeof (int), thus we need to be a bit careful about which multiplications we disallow. */ -/* { dg-final { scan-tree-dump-times "step \\* \[^0-9\]" 0 "vars" } } */ -/* { dg-final { scan-tree-dump-times "\[^0-9\] \\* step" 0 "vars" } } */ +/* { dg-final { scan-tree-dump-times "step \\* \[^0-9\]" 0 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "\[^0-9\] \\* step" 0 "optimized" } } */ -/* { dg-final { cleanup-tree-dump "vars" } } */ +/* { dg-final { cleanup-tree-dump "optimized" } } */ |