Require target lra in gcc.dg/torture/pr110422.c
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr110422.c
blob2a653bdfce3eefc647679e173f74ea93ff894c15
1 /* { dg-do compile { target lra } } */
3 struct T { int x; };
4 int foo(void) {
5 struct T v;
6 asm goto("" : "+r"(v.x) : : : lab);
7 return 0;
8 lab:
9 return -5;