diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/tree-ssa/loop-4.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/loop-4.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/loop-4.c b/gcc/testsuite/gcc.dg/tree-ssa/loop-4.c index 49e5a41e0d5..89d956136bb 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/loop-4.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/loop-4.c @@ -1,7 +1,7 @@ /* A test for strength reduction and induction variable elimination. */ /* { dg-do compile } */ -/* { dg-options "-O1 -fdump-tree-vars" } */ +/* { dg-options "-O1 -fdump-tree-optimized" } */ /* Size of this structure should be sufficiently weird so that no memory addressing mode applies. */ @@ -34,12 +34,12 @@ void xxx(void) In any case, we should not have any multiplication. */ -/* { dg-final { scan-tree-dump-times " \\* \[^\\n\\r\]*=" 0 "vars" } } */ -/* { dg-final { scan-tree-dump-times "\[^\\n\\r\]*= \\* " 0 "vars" } } */ -/* { dg-final { scan-tree-dump-times "MEM" 1 "vars" } } */ +/* { dg-final { scan-tree-dump-times " \\* \[^\\n\\r\]*=" 0 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "\[^\\n\\r\]*= \\* " 0 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "MEM" 1 "optimized" } } */ /* And the original induction variable should be eliminated. */ -/* { dg-final { scan-tree-dump-times "iter" 0 "vars" } } */ +/* { dg-final { scan-tree-dump-times "iter" 0 "optimized" } } */ -/* { dg-final { cleanup-tree-dump "vars" } } */ +/* { dg-final { cleanup-tree-dump "optimized" } } */ |