re PR testsuite/87965 (Test cases c-c++-common/pr60226.c and gcc.dg/pr39323-1.c fail...
authorMartin Sebor <msebor@redhat.com>
Fri, 9 Nov 2018 23:15:59 +0000 (23:15 +0000)
committerMartin Sebor <msebor@gcc.gnu.org>
Fri, 9 Nov 2018 23:15:59 +0000 (16:15 -0700)
gcc/testsuite/ChangeLog:

PR testsuite/87965
* c-c++-common/pr60226.c: Adjust text of expected diagnostic.
* gcc.dg/pr39323-1.c: Ditto.

From-SVN: r265998

gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/pr60226.c
gcc/testsuite/gcc.dg/pr39323-1.c

index 1046dcb97f694ae792ca42c1c66f2f76208afb6e..562c4e2896edf1a3459bd8fcf6fd0cf36a2b8a3e 100644 (file)
@@ -1,3 +1,9 @@
+2018-11-09  Martin Sebor  <msebor@redhat.com>
+
+       PR testsuite/87965
+       * c-c++-common/pr60226.c: Adjust text of expected diagnostic.
+       * gcc.dg/pr39323-1.c: Ditto.
+
 2018-11-09  Paul Koning  <ni1d@arrl.net>
 
        * gcc.dg/Walloca-16.c: Ignore conflicting types for built-in
index 42646e41e375203817d45754738b21e7232eee10..930829bd488a952032d39591c7986c5cae5ff77d 100644 (file)
@@ -1,15 +1,15 @@
-/* PR c/60226 */
+/* PR c/60226 - ICE initializing array of elements with too large alignment */
 /* { dg-do compile } */
 /* { dg-options "-Wno-c++-compat" { target c } } */
 /* { dg-require-effective-target int32plus } */
 
 typedef int __attribute__ ((aligned (1 << 28))) int28;
 int28 foo[4] = {}; /* { dg-error "alignment of array elements is greater than element size|maximum object file alignment" } */
-typedef int __attribute__ ((aligned (1 << 29))) int29; /* { dg-error "requested alignment is too large|maximum object file alignment" } */
+typedef int __attribute__ ((aligned (1 << 29))) int29; /* { dg-error "requested alignment|maximum object file alignment" } */
 
 void
 f (void)
 {
   struct { __attribute__((aligned (1 << 28))) double a; } x1;
-  struct { __attribute__((aligned (1 << 29))) double a; } x2; /* { dg-error "requested alignment is too large" } */
+  struct { __attribute__((aligned (1 << 29))) double a; } x2; /* { dg-error "requested alignment" } */
 }
index 5e3baec4b6030d79ee0dc941ee87a4e83ef3c750..7a7fd63a416866178d067815f036ffe8bb459a15 100644 (file)
@@ -1,5 +1,5 @@
-/* PR c/39323 */
+/* PR c/39323 - MAX_OFILE_ALIGNMENT in elfos.h is too big */
 /* { dg-do compile { target *-*-linux* *-*-gnu* } } */
 
-int foo __attribute__ ((aligned(1 << 29))) =  20; /* { dg-error "requested alignment is too large" } */
-typedef int __attribute__ ((aligned(1 << 29))) int29; /* { dg-error "requested alignment is too large" } */
+int foo __attribute__ ((aligned(1 << 29))) =  20; /* { dg-error "requested alignment" } */
+typedef int __attribute__ ((aligned(1 << 29))) int29; /* { dg-error "requested alignment" } */