Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20000802-1.c
blob: 0b2f1d6af568d8c24462a53433d43e39031cb893 [
file
] [
log
] [
blame
]
struct
foo
{
char
a
[
3
];
char
b
;
char
c
;
};
struct
foo bs
;
int
x
;
char
y
[
3
];
void
bar
(
void
)
{
memcpy
(
bs
.
a
,
y
,
3
);
bs
.
a
[
1
]
=
((
x
?
&
bs
.
b
:
&
bs
.
c
)
-
(
char
*)&
bs
)
-
2
;
}