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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166587
138bc75d-0d04-0410-961f-
82ee72b054a4
+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
/* { 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;
/* { 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));
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];
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];
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;
}
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;
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;
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];