Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr96998.c
blob: a75d5dcfe080f1b9950f1a5760397173f7bf3a45 [
file
] [
log
] [
blame
]
/* { dg-do compile { target arm*-*-* aarch64*-*-* } } */
int
h
(
void
);
struct
c d
;
struct
c
{
int
e
[
1
];
};
void
f
(
void
)
{
int
g
;
for
(;;
g
=
h
())
{
int
*
i
=
&
d
.
e
[
g
];
asm
(
""
:
"=Q"
(*
i
));
}
}