Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr52891-1.c
blob: e695d1cfcc16dc61465fe7a19a8af24a4a3c806e [
file
] [
log
] [
blame
]
/* PR tree-optimizations/52891 */
struct
S
{
int
a
;
struct
T
{
unsigned
c
:
10
;
}
b
;
}
s
;
void
bar
(
short
x
,
short
y
,
int
**
p
)
{
if
((
x
&&
y
)
+
**
p
)
while
(
1
);
}
void
foo
(
int
**
p
)
{
bar
(
s
.
a
,
s
.
b
.
c
,
p
);
}