aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamar Christina <tamar.christina@arm.com>2021-12-02 13:30:08 +0000
committerTamar Christina <tamar.christina@arm.com>2021-12-02 13:30:08 +0000
commit7d6c20c06ce4e5d595245af503b045c2032c02f7 (patch)
treecfd25aa7ce100c71bb456bd548e59701035a3dc1
parent9af081003f9c19f33457e0ed1aa14a764f462c3c (diff)
downloadgcc-7d6c20c06ce4e5d595245af503b045c2032c02f7.zip
gcc-7d6c20c06ce4e5d595245af503b045c2032c02f7.tar.gz
gcc-7d6c20c06ce4e5d595245af503b045c2032c02f7.tar.bz2
testsuite: make bic-bitmask-18.c test more precise [PR103479]
This updates the testcase bic-bitmask-18.c to seach for " = 0;" as an expression so it doesn't match any other partial expressions. gcc/testsuite/ChangeLog: PR testsuite/103479 * gcc.dg/bic-bitmask-18.c: Update regexpr to expect = 0;.
-rw-r--r--gcc/testsuite/gcc.dg/bic-bitmask-18.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/bic-bitmask-18.c b/gcc/testsuite/gcc.dg/bic-bitmask-18.c
index 9d11b3b..70bab0c 100644
--- a/gcc/testsuite/gcc.dg/bic-bitmask-18.c
+++ b/gcc/testsuite/gcc.dg/bic-bitmask-18.c
@@ -19,6 +19,6 @@ void fun2(uint32_t *x, int n)
#include "bic-bitmask.h"
-/* { dg-final { scan-tree-dump-times {= 0} 1 dce7 { target vect_int } } } */
+/* { dg-final { scan-tree-dump-times { = 0;} 1 dce7 { target vect_int } } } */
/* { dg-final { scan-tree-dump-not {\s+bic\s+} dce7 { target { aarch64*-*-* } } } } */