diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2020-07-20 05:06:49 +0200 |
---|---|---|
committer | Hans-Peter Nilsson <hp@bitrange.com> | 2020-07-20 05:06:49 +0200 |
commit | 0251a7eef9638f4c1e6a96af60d9607c37821b14 (patch) | |
tree | b84d90343fe42ad77121f18cdc6343a1145c5b1a /gcc | |
parent | f3d4b92239400e460b868bb45a063ae1daa90520 (diff) | |
download | gcc-0251a7eef9638f4c1e6a96af60d9607c37821b14.zip gcc-0251a7eef9638f4c1e6a96af60d9607c37821b14.tar.gz gcc-0251a7eef9638f4c1e6a96af60d9607c37821b14.tar.bz2 |
gcc.dg/const-uniq-1.c: Adjust scanned pattern for mmix.
Apparently local labels end up in the gimple dumps. For mmix,
local labels that for other targets look like ".LC0" or "LC.0"
instead look like "LC:0". Committed as obvious.
gcc/testsuite:
* gcc.dg/const-uniq-1.c: Adjust scanned pattern for mmix.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/const-uniq-1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/const-uniq-1.c b/gcc/testsuite/gcc.dg/const-uniq-1.c index 0e0718b..ba7021b 100644 --- a/gcc/testsuite/gcc.dg/const-uniq-1.c +++ b/gcc/testsuite/gcc.dg/const-uniq-1.c @@ -20,4 +20,4 @@ int lookup2 (int i) return a[i+1]; } -/* { dg-final { scan-tree-dump-times "\[lL\]\\\$?C\\\.*0" 2 "gimple" } } */ +/* { dg-final { scan-tree-dump-times "\[lL\]\\\$?C\[.:\]*0" 2 "gimple" } } */ |