aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2021-11-15 07:50:44 +0100
committerHans-Peter Nilsson <hp@axis.com>2021-11-15 07:59:16 +0100
commitadcfd2c45c3523d74279b5fcac1d7c6c34dd1382 (patch)
tree9767e484ef5e1f09a50eb23b7c27a71cddc58eff /gcc
parent3e09331f6aeaf5955e3deab986597d5b40c20845 (diff)
downloadgcc-adcfd2c45c3523d74279b5fcac1d7c6c34dd1382.zip
gcc-adcfd2c45c3523d74279b5fcac1d7c6c34dd1382.tar.gz
gcc-adcfd2c45c3523d74279b5fcac1d7c6c34dd1382.tar.bz2
gcc.dg/uninit-pred-9_b.c: Correct last adjustment for cris-elf
The change at r12-4790 should have done the same change for CRIS as was done for powerpc64*-*-*. (Probably MMIX too but that may have to wait until the next weekend.) gcc/testsuite: * gcc.dg/uninit-pred-9_b.c: Correct last adjustment, for CRIS.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/gcc.dg/uninit-pred-9_b.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/uninit-pred-9_b.c b/gcc/testsuite/gcc.dg/uninit-pred-9_b.c
index 552ab8b..53c4a53 100644
--- a/gcc/testsuite/gcc.dg/uninit-pred-9_b.c
+++ b/gcc/testsuite/gcc.dg/uninit-pred-9_b.c
@@ -17,10 +17,10 @@ int foo (int n, int l, int m, int r)
if (l > 100)
if ( (n <= 9) && (m < 100) && (r < 19) )
- blah(v); /* { dg-bogus "uninitialized" "bogus warning" { xfail powerpc64*-*-* } } */
+ blah(v); /* { dg-bogus "uninitialized" "bogus warning" { xfail powerpc64*-*-* cris-*-* } } */
if ( (n <= 8) && (m < 99) && (r < 19) )
- blah(v); /* { dg-bogus "uninitialized" "pr101674" { xfail mmix-*-* cris-*-* } } */
+ blah(v); /* { dg-bogus "uninitialized" "pr101674" { xfail mmix-*-* } } */
return 0;
}