mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 13:31:04 +08:00
Replace spurious character 0xa0 with 0x20 before 'target'
From-SVN: r143664
This commit is contained in:
parent
cc7f271ede
commit
ecbf12d3cc
@ -3,7 +3,7 @@
|
||||
/* { dg-options "" } */
|
||||
|
||||
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 b:8;
|
||||
char c:4;
|
||||
|
@ -2,7 +2,7 @@
|
||||
/* { dg-options "" } */
|
||||
|
||||
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 b:8 __attribute__ ((packed));
|
||||
char c:4;
|
||||
|
@ -7,6 +7,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];
|
||||
|
@ -6,6 +6,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];
|
||||
|
Loading…
x
Reference in New Issue
Block a user