blob: a75d5dcfe080f1b9950f1a5760397173f7bf3a45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { 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));
}
}
|