diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2005-08-20 16:08:51 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2005-08-20 16:08:51 +0000 |
commit | 3c0764fc1e874d271f1f79bc771fc6d8df0875e8 (patch) | |
tree | 85f4c4f9453ffd192a66b9f50a52dcd483d2bb3b /gcc | |
parent | 5e34206b7e8b20fc6a1cf420076b6461c40ab4da (diff) | |
download | gcc-3c0764fc1e874d271f1f79bc771fc6d8df0875e8.zip gcc-3c0764fc1e874d271f1f79bc771fc6d8df0875e8.tar.gz gcc-3c0764fc1e874d271f1f79bc771fc6d8df0875e8.tar.bz2 |
re PR testsuite/23239 (gcc.dg/tree-prof/val-prof-5.c scan-tree-dump Div.mod by constant b..=997 transformation on insn fails)
PR testsuite/23239
* gcc.dg/tree-prof/val-prof-5.c: Fix scan-tree-dump regexp.
From-SVN: r103305
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-prof/val-prof-5.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 39f7cd7..f248940 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-08-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR testsuite/23239 + * gcc.dg/tree-prof/val-prof-5.c: Fix scan-tree-dump regexp. + 2005-08-20 Jakub Jelinek <jakub@redhat.com> * gcc.dg/20050811-1.c: New test. diff --git a/gcc/testsuite/gcc.dg/tree-prof/val-prof-5.c b/gcc/testsuite/gcc.dg/tree-prof/val-prof-5.c index 41a43c3..095fb06 100644 --- a/gcc/testsuite/gcc.dg/tree-prof/val-prof-5.c +++ b/gcc/testsuite/gcc.dg/tree-prof/val-prof-5.c @@ -11,7 +11,7 @@ main() a[i]/=b; return 0; } -/* { dg-final-use { scan-tree-dump "Div.mod by constant b..=997 transformation on insn" "tree_profile"} } */ +/* { dg-final-use { scan-tree-dump "Div.mod by constant b.*=997 transformation on insn" "tree_profile"} } */ /* { dg-final-use { scan-tree-dump-not "Invalid sum" "optimized"} } */ /* { dg-final-use { cleanup-tree-dump "optimized" } } */ /* { dg-final-use { cleanup-tree-dump "tree_profile" } } */ |