diff options
author | Martin Sebor <msebor@redhat.com> | 2021-07-08 16:22:25 -0600 |
---|---|---|
committer | Martin Sebor <msebor@redhat.com> | 2021-07-08 16:22:25 -0600 |
commit | 68b938fada4c728c0b850b44125d9a173c01c8fb (patch) | |
tree | 9c597eb50e3dbffab04f3c045a3e775653216bbe | |
parent | c232f07b931e3e4cb7cbd96e47b161f1c390f21d (diff) | |
download | gcc-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.
-rw-r--r-- | gcc/testsuite/gcc.dg/Wstringop-overflow-43.c | 4 |
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+" } |