]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Adjust expected output for LP32 [PR100451].
authorMartin Sebor <msebor@redhat.com>
Thu, 8 Jul 2021 22:08:20 +0000 (16:08 -0600)
committerMartin Sebor <msebor@redhat.com>
Thu, 8 Jul 2021 22:08:20 +0000 (16:08 -0600)
gcc/testsuite/ChangeLog:

PR testsuite/100451
* g++.dg/warn/Warray-bounds-20.C: Adjust expected output for LP32.

gcc/testsuite/g++.dg/warn/Warray-bounds-20.C

index a65b29e62690122cd983702288220d60af1b6520..f4876d8a269d2f825466759970c307edc5cd50f2 100644 (file)
@@ -27,7 +27,7 @@ struct D1: virtual B, virtual C
      to the opening brace.  */
   D1 ()
   {                           // { dg-warning "\\\[-Warray-bounds" "brace" }
-    ci = 0;                   // { dg-warning "\\\[-Warray-bounds" "assign" { xfail *-*-* } }
+    ci = 0;                   // { dg-warning "\\\[-Warray-bounds" "assign" { xfail lp64 } }
   }
 };
 
@@ -35,7 +35,8 @@ void sink (void*);
 
 void warn_derived_ctor_access_new_decl ()
 {
-  char a[sizeof (D1)];        // { dg-message "at offset 1 into object 'a' of size 40" "note" }
+  char a[sizeof (D1)];        // { dg-message "at offset 1 into object 'a' of size 40" "LP64 note" { target lp64} }
+                              // { dg-message "at offset 1 into object 'a' of size 20" "LP64 note" { target ilp32} .-1 }
   char *p = a;
   ++p;
   D1 *q = new (p) D1;
@@ -52,7 +53,8 @@ void warn_derived_ctor_access_new_alloc ()
 
 void warn_derived_ctor_access_new_array_decl ()
 {
-  char b[sizeof (D1) * 2];    // { dg-message "at offset \\d+ into object 'b' of size 80" "note" }
+  char b[sizeof (D1) * 2];    // { dg-message "at offset \\d+ into object 'b' of size 80" "LP64 note" { target lp64 } }
+                              // { dg-message "at offset \\d+ into object 'b' of size 40" "LP64 note" { target ilp32 } .-1 }
   char *p = b;
   ++p;
   D1 *q = new (p) D1[2];