Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr82838.c
blob: a6ca163f82f7e194148702827998ed8031838b86 [
file
] [
log
] [
blame
]
/* PR tree-optimization/82838 */
struct
S
{
unsigned
short
a
,
b
,
c
;
};
struct
S f
[
10
];
void
foo
(
int
e
)
{
struct
S
*
x
;
f
[
e
].
b
=
x
[
e
].
a
;
f
[
e
].
c
=
x
[
e
].
b
;
}