| Index: gcc/gcc/testsuite/gcc.target/i386/pr39545-1.c
|
| diff --git a/gcc/gcc/testsuite/gcc.target/i386/pr39545-1.c b/gcc/gcc/testsuite/gcc.target/i386/pr39545-1.c
|
| index 62bc33fa21d59dc2c82576508e97ecc90b183481..281c8cbf369ef66789c8faea664ab527dcdbb57e 100644
|
| --- a/gcc/gcc/testsuite/gcc.target/i386/pr39545-1.c
|
| +++ b/gcc/gcc/testsuite/gcc.target/i386/pr39545-1.c
|
| @@ -10,14 +10,14 @@ struct flex
|
| };
|
|
|
| int
|
| -foo (struct flex s) /* { dg-message "note: The ABI of passing struct with a flexible array member has changed in GCC 4.4" } */
|
| +foo (struct flex s)
|
| {
|
| return s.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" } */
|
| struct flex s;
|
| s.i = x;
|
| return s;
|
|
|