Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr78436.c
blob: ea03d3fa666fd8a89204cb9e42959582d467bfee [
file
] [
log
] [
blame
]
/* PR tree-optimization/78436 */
struct
S
{
long
int
a
:
24
;
signed
char
b
:
8
;
}
s
;
__attribute__
((
noinline
,
noclone
))
void
foo
()
{
s
.
b
=
0
;
s
.
a
=
-
1193165L
;
}
int
main
()
{
foo
();
if
(
s
.
b
!=
0
)
__builtin_abort
();
return
0
;
}