aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Edelsohn <dje.gcc@gmail.com>2020-07-11 19:42:56 -0400
committerDavid Edelsohn <dje.gcc@gmail.com>2020-07-14 10:26:07 -0400
commitee352e91d2e0ab6a1a533f33c6509b6689b03211 (patch)
treed34e0c6cbd506ff6aa84b6b9b34253532f29c67a
parentb1d389d60d1929c7528ef984925ea010e3bf2c1a (diff)
downloadgcc-ee352e91d2e0ab6a1a533f33c6509b6689b03211.zip
gcc-ee352e91d2e0ab6a1a533f33c6509b6689b03211.tar.gz
gcc-ee352e91d2e0ab6a1a533f33c6509b6689b03211.tar.bz2
testsuite: adapt g++.dg/ipa/pr83667.C for AIX
The current testsuite regex looks for THUNK0. AIX generates THUNK..0. This patch expands the regex to allow 0 or more dots between THUNK and the 0. gcc/testsuite/ChangeLog 2020-07-14 David Edelsohn <dje.gcc@gmail.com> * g++.dg/ipa/pr83667.C: Allow 0 or more dots between THUNK and 0.
-rw-r--r--gcc/testsuite/g++.dg/ipa/pr83667.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.dg/ipa/pr83667.C b/gcc/testsuite/g++.dg/ipa/pr83667.C
index 25522da..a8a5a5a 100644
--- a/gcc/testsuite/g++.dg/ipa/pr83667.C
+++ b/gcc/testsuite/g++.dg/ipa/pr83667.C
@@ -22,4 +22,4 @@ struct c : a, b
c c;
-// { dg-final { scan-ipa-dump "summary for void c::\[^\\n\]*THUNK0" "inline" } }
+// { dg-final { scan-ipa-dump "summary for void c::\[^\\n\]*THUNK\\.*0" "inline" } }