]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: Remove an xfail.
authorMartin Sebor <msebor@redhat.com>
Thu, 8 Jul 2021 22:22:25 +0000 (16:22 -0600)
committerMartin Sebor <msebor@redhat.com>
Thu, 8 Jul 2021 22:22:25 +0000 (16:22 -0600)
gcc/testsuite/ChangeLog:

* gcc.dg/Wstringop-overflow-43.c: Remove an xfail.

gcc/testsuite/gcc.dg/Wstringop-overflow-43.c

index 14ab925afdce9263582f3a0aecc7c29f3b29df54..6d045c58bf6ce3fa862edc594e5a3dab6266c056 100644 (file)
@@ -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+" }