Commit ecbf12d3 by Hans-Peter Nilsson

Replace spurious character 0xa0 with 0x20 before 'target'

From-SVN: r143664
parent cc7f271e
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
/* { dg-options "" } */ /* { dg-options "" } */
struct t struct t
{ /* { dg-message "note: Offset of packed bit-field 't::b' has changed in GCC 4.4" "" {target pcc_bitfield_type_matters } } */ { /* { 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 a:4;
char b:8; char b:8;
char c:4; char c:4;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* { dg-options "" } */ /* { dg-options "" } */
struct t struct t
{ /* { dg-message "note: Offset of packed bit-field 't::b' has changed in GCC 4.4" "" {target pcc_bitfield_type_matters } } */ { /* { 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 a:4;
char b:8 __attribute__ ((packed)); char b:8 __attribute__ ((packed));
char c:4; char c:4;
......
...@@ -7,6 +7,6 @@ struct t ...@@ -7,6 +7,6 @@ struct t
char a:4; char a:4;
char b:8; char b:8;
char c:4; 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]; int assrt[sizeof (struct t) == 2 ? 1 : -1];
...@@ -6,6 +6,6 @@ struct t ...@@ -6,6 +6,6 @@ struct t
char a:4; char a:4;
char b:8 __attribute__ ((packed)); char b:8 __attribute__ ((packed));
char c:4; 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 assrt[sizeof (struct t) == 2 ? 1 : -1];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment