diff options
author | Martin Sebor <msebor@redhat.com> | 2019-10-08 15:33:50 +0000 |
---|---|---|
committer | Martin Sebor <msebor@gcc.gnu.org> | 2019-10-08 09:33:50 -0600 |
commit | 0de558660a7a7b013a857cbb41a02750aad78456 (patch) | |
tree | e12dd4f3e80816d17f66fd55ac1cf90de872b641 /gcc | |
parent | 17ce4f48733cdefcd672f8ec5eb104c86984e492 (diff) | |
download | gcc-0de558660a7a7b013a857cbb41a02750aad78456.zip gcc-0de558660a7a7b013a857cbb41a02750aad78456.tar.gz gcc-0de558660a7a7b013a857cbb41a02750aad78456.tar.bz2 |
re PR testsuite/92025 (gcc.dg/Wstringop-overflow-12.c XPASSes)
gcc/testsuite/ChangeLog:
PR tetsuite/92025
* gcc.dg/Wstringop-overflow-12.c: Remove xfail.
2019-10-08 Richard Biener <rguenther@suse.de>
From-SVN: r276703
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/Wstringop-overflow-12.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fb2264f..895c06f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-10-08 Martin Sebor <msebor@redhat.com> + + PR tetsuite/92025 + * gcc.dg/Wstringop-overflow-12.c: Remove xfail. + 2019-10-08 Richard Biener <rguenther@suse.de> * gcc.dg/vect/pr65947-1.c: Adjust. diff --git a/gcc/testsuite/gcc.dg/Wstringop-overflow-12.c b/gcc/testsuite/gcc.dg/Wstringop-overflow-12.c index 04fa114..5a05f5c 100644 --- a/gcc/testsuite/gcc.dg/Wstringop-overflow-12.c +++ b/gcc/testsuite/gcc.dg/Wstringop-overflow-12.c @@ -39,7 +39,7 @@ void test_memcpy_array_cst_range_off (const void *s) T (d + SR (-7, -1), 1); T (d + SR (-2, -1), 3); /* { dg-warning "writing 3 bytes into a region of size 2 " "pr85350" { xfail *-*-* } } */ - T (d + UR (1, 2), 1); /* { dg-warning "writing 1 byte into a region of size 0 " "pr89350" { xfail *-*-* } } */ + T (d + UR (1, 2), 1); /* { dg-warning "writing 1 byte into a region of size 0 " } */ } |