bitfield2.C, [...]: Update expected messages.
authorJoseph Myers <joseph@codesourcery.com>
Thu, 11 Nov 2010 02:14:01 +0000 (02:14 +0000)
committerJoseph Myers <jsm28@gcc.gnu.org>
Thu, 11 Nov 2010 02:14:01 +0000 (02:14 +0000)
* g++.dg/ext/bitfield2.C, g++.dg/ext/bitfield4.C,
gcc.dg/bitfld-15.c, gcc.dg/bitfld-17.c,
gcc.target/i386/pr39082-1.c, gcc.target/i386/pr39545-1.c,
gcc.target/i386/pr39545-2.c, gcc.target/i386/pr39678.c: Update
expected messages.

From-SVN: r166587

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/bitfield2.C
gcc/testsuite/g++.dg/ext/bitfield4.C
gcc/testsuite/gcc.dg/bitfld-15.c
gcc/testsuite/gcc.dg/bitfld-17.c
gcc/testsuite/gcc.target/i386/pr39082-1.c
gcc/testsuite/gcc.target/i386/pr39545-1.c
gcc/testsuite/gcc.target/i386/pr39545-2.c
gcc/testsuite/gcc.target/i386/pr39678.c

index ea2341e4e61b658577d1f55fe5902633c9345d15..1115512a2d30e2646ef0fd924b8a76a2ea0e944e 100644 (file)
@@ -1,3 +1,11 @@
+2010-11-10  Joseph Myers  <joseph@codesourcery.com>
+
+       * g++.dg/ext/bitfield2.C, g++.dg/ext/bitfield4.C,
+       gcc.dg/bitfld-15.c, gcc.dg/bitfld-17.c,
+       gcc.target/i386/pr39082-1.c, gcc.target/i386/pr39545-1.c,
+       gcc.target/i386/pr39545-2.c, gcc.target/i386/pr39678.c: Update
+       expected messages.
+
 2010-11-10  Jan Hubicka  <jh@suse.cz>
 
        PR tree-optimize/38669
index 40effc786a3e90825ecf88b94d0fb1e50c15a6b3..753492ce9949f09ffa968c2334dcda356dc89b62 100644 (file)
@@ -3,7 +3,7 @@
 /* { dg-options "" } */
 /* { dg-options "-mno-ms-bitfields" { target i?86-*-netware } } */
 
-struct t /* { dg-message "note: Offset of packed bit-field 't::b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
+struct t /* { dg-message "note: offset of packed bit-field 't::b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
 {
   char a:4;
   char b:8;
index 8dacfaf33cb087a696f0c65d412c064a94e96574..7bf85533130b98e1b0cdc64fd685b768330e6a10 100644 (file)
@@ -2,7 +2,7 @@
 /* { dg-options "" } */
 /* { dg-options "-mno-ms-bitfields" { target i?86-*-netware } } */
 
-struct t /* { dg-message "note: Offset of packed bit-field 't::b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
+struct t /* { dg-message "note: offset of packed bit-field 't::b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
 {
   char a:4;
   char b:8 __attribute__ ((packed));
index 968290f06ae20da6b07e35bf0976efc2e449988d..44d53b34ae2a0d050dab1642797e8a0b8f8385d4 100644 (file)
@@ -8,6 +8,6 @@ struct t
   char a:4;
   char b:8;
   char c:4;
-} __attribute__ ((packed)); /* { dg-message "note: Offset of packed bit-field 'b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
+} __attribute__ ((packed)); /* { dg-message "note: offset of packed bit-field 'b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
 
 int assrt[sizeof (struct t) == 2 ? 1 : -1];
index a0ad1ffeeacc035de4bcca0bd7cb248ef0bff99f..80099c6c9a2a5a9c657851c6e2936916e8cf20c7 100644 (file)
@@ -7,6 +7,6 @@ struct t
   char a:4;
   char b:8 __attribute__ ((packed));
   char c:4;
-}; /* { dg-message "note: Offset of packed bit-field 'b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
+}; /* { dg-message "note: offset of packed bit-field 'b' has changed in GCC 4.4" "" { target pcc_bitfield_type_matters } } */
 
 int assrt[sizeof (struct t) == 2 ? 1 : -1];
index 81b5bb66d2b897ad9c60cf363c0e1b4c9317da02..0a788d11650955d88fe6ca64b970978d8d491eb1 100644 (file)
@@ -30,6 +30,6 @@ foo2 (void)
 int
 foo3 (int x)
 {
-  union un u = bar2 (x); /* { dg-message "note: The ABI of passing union with long double has changed in GCC 4.4" } */
+  union un u = bar2 (x); /* { dg-message "note: the ABI of passing union with long double has changed in GCC 4.4" } */
   return u.i;
 }
index 281c8cbf369ef66789c8faea664ab527dcdbb57e..e7e41164b25c37a6c01f047fb61c5b8dc0095576 100644 (file)
@@ -17,7 +17,7 @@ foo (struct flex s)
 
 struct flex
 bar (int x)
-{ /* { dg-message "note: The ABI of passing struct with a flexible array member has changed in GCC 4.4" } */
+{ /* { dg-message "note: the ABI of passing struct with a flexible array member has changed in GCC 4.4" } */
   struct flex s;
   s.i = x;
   return s;
index 143c3827fd6c762b174fb9a284ba8c38e0288b11..46deecbe0b4132cd0d85cf47d865efbcc08f4d90 100644 (file)
@@ -11,7 +11,7 @@ struct flex
 
 struct flex
 foo (int x)
-{ /* { dg-message "note: The ABI of passing struct with a flexible array member has changed in GCC 4.4" } */
+{ /* { dg-message "note: the ABI of passing struct with a flexible array member has changed in GCC 4.4" } */
   struct flex s;
   s.i = x;
   return s;
index 70e8ff497cd296d4cda7330721a776068b0b55c3..0548466d6deadd16953ea9e91daaff20ada9621e 100644 (file)
@@ -10,7 +10,7 @@ struct X {
 
 struct X
 foo (float *p)
-{ /* { dg-message "note: The ABI of passing structure with complex float member has changed in GCC 4.4" } */
+{ /* { dg-message "note: the ABI of passing structure with complex float member has changed in GCC 4.4" } */
   struct X x;
   x.c = -3;
   __real x.val = p[0];