Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr105094.c
blob: da6dc172a64e45280d1e072d27ef65087b7fcbcf [
file
] [
log
] [
blame
]
/* PR tree-optimization/105094 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
struct
S
{
short
a
;
char
b
[~(
__SIZE_TYPE__
)
0
/
__CHAR_BIT__
-
1
];
};
void
bar
(
struct
S
*);
void
foo
(
void
)
{
struct
S s
=
{
5
};
bar
(&
s
);
}