diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2020-07-21 02:43:11 +0200 |
---|---|---|
committer | Hans-Peter Nilsson <hp@bitrange.com> | 2020-07-21 02:43:11 +0200 |
commit | 77077c8812c25e9a0ddb6ecbb4460d34294da0c2 (patch) | |
tree | 6a028295d4099a46c53c109ea5b40485fa70e496 /gcc | |
parent | 5648254484845e9c600a485aa42ae26230558a27 (diff) | |
download | gcc-77077c8812c25e9a0ddb6ecbb4460d34294da0c2.zip gcc-77077c8812c25e9a0ddb6ecbb4460d34294da0c2.tar.gz gcc-77077c8812c25e9a0ddb6ecbb4460d34294da0c2.tar.bz2 |
gcc.dg/independent-cloneids-1.c: Skip for mmix.
Regular ELF label definitions for this test-case, matched by the
regexps, e.g.:
/* { dg-final { scan-assembler-times {(?n)^_*bar[.$_]constprop[.$_]0:} 1 } } */
typically look like this:
bar_constprop.0:
For MMIX, they look like this:
bar_constprop::0 IS @
I think it's better to just skip the test for MMIX than further
uglifying the matching regexps, since the test is IIUC general
enough that nothing in the target port can reasonably make a
difference: it passes for all targets or fail for all targets.
gcc/testsuite:
* gcc.dg/independent-cloneids-1.c: Skip for mmix.
flag_stack_usage_info.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/independent-cloneids-1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/independent-cloneids-1.c b/gcc/testsuite/gcc.dg/independent-cloneids-1.c index 61c1203..516211a 100644 --- a/gcc/testsuite/gcc.dg/independent-cloneids-1.c +++ b/gcc/testsuite/gcc.dg/independent-cloneids-1.c @@ -1,5 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-O3 -fipa-cp -fipa-cp-clone" } */ +/* { dg-skip-if "Odd label definition syntax" { mmix-*-* } } */ extern int printf (const char *, ...); |