repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr39545-2.c
blob
46deecbe0b4132cd0d85cf47d865efbcc08f4d90
1
/* PR target/39545 */
2
/* { dg-do compile } */
3
/* { dg-require-effective-target lp64 } */
4
/* { dg-options "-O2" } */
5
6
struct
flex
7
{
8
int
i
;
9
int
flex
[];
10
};
11
12
struct
flex
13
foo
(
int
x
)
14
{
/* { dg-message "note: the ABI of passing struct with a flexible array member has changed in GCC 4.4" } */
15
struct
flex s
;
16
s
.
i
=
x
;
17
return
s
;
18
}