Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20040817-1.c
blob: 158596c8f2da9d3d53290a9cccac19b3d1a0dbba [
file
] [
log
] [
blame
]
/* PR 17051: SRA failed to rename the VOPS properly. */
struct
A
{
char
c
,
d
;
};
void
foo
(
struct
A
*
p
)
{
struct
A a
=
*
p
;
if
(
p
->
c
)
bar1
(
a
);
else
{
if
(
p
)
bar2
(
a
,
a
.
c
);
bar3
(
a
.
c
);
}
}