diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-25 19:24:19 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-25 19:24:19 +0000 |
commit | 2e8d2f3202c34da752b421f1f78edff2325503e9 (patch) | |
tree | 271992bbdeea163b2d4934b89cb251f3582c1ed2 | |
parent | 18b64b3435311eed114dc13fb9c12d3a13d90b1d (diff) | |
download | gcc-2e8d2f3202c34da752b421f1f78edff2325503e9.tar.gz |
* gcc.dg/tree-ssa/cunroll-4.c: Update; we now remove the loop
at ivcanon time.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192822 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/cunroll-4.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 16c0ce6c1b9..e4ae2b8fca0 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-10-25 Jan Hubicka <jh@suse.cz> + + * gcc.dg/tree-ssa/cunroll-4.c: Update; we now remove the loop + at ivcanon time. + 2012-10-25 Paolo Carlini <paolo.carlini@oracle.com> PR c++/53761 diff --git a/gcc/testsuite/gcc.dg/tree-ssa/cunroll-4.c b/gcc/testsuite/gcc.dg/tree-ssa/cunroll-4.c index 02c94260a32..e42919c342f 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/cunroll-4.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/cunroll-4.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O3 -fdump-tree-cunroll-details" } */ +/* { dg-options "-O3 -fdump-tree-ivcanon-details" } */ int a[1]; test(int c) { @@ -16,6 +16,6 @@ test(int c) /* We should do this as part of cunrolli, but our cost model do not take into account early exit from the last iteration. */ -/* { dg-final { scan-tree-dump "Turned loop 1 to non-loop; it never loops." "cunrolli"} } */ -/* { dg-final { scan-tree-dump "Last iteration exit edge was proved true." "cunrolli"} } */ -/* { dg-final { cleanup-tree-dump "cunroll" } } */ +/* { dg-final { scan-tree-dump "Turned loop 1 to non-loop; it never loops." "ivcanon"} } */ +/* { dg-final { scan-tree-dump "Last iteration exit edge was proved true." "ivcanon"} } */ +/* { dg-final { cleanup-tree-dump "ivcanon" } } */ |