vect: Fix vect_reduction_def check for odd/even widen mult [PR116142]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr110422.c
blob34de7a2980fbecca85f68666801e362fbb4b4e37
1 /* { dg-do compile { target asm_goto_with_outputs } } */
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;