Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20000412-1.c
blob: 243b469e7d2a031b866e32ad43b920a1ec1e0cf5 [
file
] [
log
] [
blame
]
typedef
struct
{
short
a
;
short
b
;
}
s1
;
extern
void
g
(
unsigned
char
*
b
);
void
f
(
void
)
{
s1 a
;
unsigned
char
*
b
;
a
.
a
=
0
;
b
=
(
unsigned
char
*)&
a
;
g
(
b
);
}