diff options
author | Richard Biener <rguenther@suse.de> | 2022-09-08 13:00:45 +0200 |
---|---|---|
committer | Richard Biener <rguenther@suse.de> | 2022-09-08 13:02:13 +0200 |
commit | 794a01d7dcf306578bc5d0d147895c58a91506de (patch) | |
tree | f96b812a2c549307a1909fb32695d97e6c594478 | |
parent | 672632317ac901f369b65b25f2147b3e7790ecca (diff) | |
download | gcc-794a01d7dcf306578bc5d0d147895c58a91506de.zip gcc-794a01d7dcf306578bc5d0d147895c58a91506de.tar.gz gcc-794a01d7dcf306578bc5d0d147895c58a91506de.tar.bz2 |
testsuite/106872 - fix uninit predicate dump scan
On ppc we see a doloop temp rather than ivtmp.
PR testsuite/106872
* gcc.dg/uninit-pred-12.c: Adjust.
-rw-r--r-- | gcc/testsuite/gcc.dg/uninit-pred-12.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/uninit-pred-12.c b/gcc/testsuite/gcc.dg/uninit-pred-12.c index ebf0288..4c66486 100644 --- a/gcc/testsuite/gcc.dg/uninit-pred-12.c +++ b/gcc/testsuite/gcc.dg/uninit-pred-12.c @@ -31,4 +31,4 @@ unsigned foo (unsigned v, int y, int w) } /* Make sure predicate analysis picked up the loop exit condition. */ -/* { dg-final { scan-tree-dump "AND \\(NOT \\(ivtmp" "uninit1" } } */ +/* { dg-final { scan-tree-dump "AND \\(NOT \\((ivtmp|doloop)" "uninit1" } } */ |