aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMartin Sebor <msebor@redhat.com>2021-07-08 16:22:25 -0600
committerMartin Sebor <msebor@redhat.com>2021-07-08 16:22:25 -0600
commit68b938fada4c728c0b850b44125d9a173c01c8fb (patch)
tree9c597eb50e3dbffab04f3c045a3e775653216bbe /gcc
parentc232f07b931e3e4cb7cbd96e47b161f1c390f21d (diff)
downloadgcc-68b938fada4c728c0b850b44125d9a173c01c8fb.zip
gcc-68b938fada4c728c0b850b44125d9a173c01c8fb.tar.gz
gcc-68b938fada4c728c0b850b44125d9a173c01c8fb.tar.bz2
testsuite: Remove an xfail.
gcc/testsuite/ChangeLog: * gcc.dg/Wstringop-overflow-43.c: Remove an xfail.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/gcc.dg/Wstringop-overflow-43.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/testsuite/gcc.dg/Wstringop-overflow-43.c b/gcc/testsuite/gcc.dg/Wstringop-overflow-43.c
index 14ab925..6d045c5 100644
--- a/gcc/testsuite/gcc.dg/Wstringop-overflow-43.c
+++ b/gcc/testsuite/gcc.dg/Wstringop-overflow-43.c
@@ -167,9 +167,7 @@ void warn_memset_reversed_range (void)
/* The following are represented as ordinary ranges with reversed bounds
and those are handled. */
T1 (p, SAR (INT_MIN, 11), n11); // { dg-warning "writing 11 or more bytes into a region of size 0" }
- /* In ILP32 the offset in the following has no range info associated
- with it. */
- T1 (p, SAR (INT_MIN, 1), n11); // { dg-warning "writing 11 or more bytes into a region of size 0" "pr?????" { xfail ilp32 } }
+ T1 (p, SAR (INT_MIN, 1), n11); // { dg-warning "writing 11 or more bytes into a region of size 0" }
T1 (p, SAR (INT_MIN, 0), n11); // { dg-warning "writing 11 or more bytes into a region of size 0" }
/* Also represented as a true anti-range. */
T1 (p, SAR ( -12, -11), n11); // { dg-warning "writing 11 or more bytes into a region of size \\d+" }