mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr100329.c
blob5759131a6cae76700f7f4a84462eb9e10f12f7cf
1 /* { dg-do compile { target asm_goto_with_outputs } } */
2 /* { dg-additional-options "--param tree-reassoc-width=2" } */
4 unsigned int a0;
6 unsigned int
7 foo (unsigned int a1, unsigned int a2)
9 unsigned int x;
11 asm goto ("" : "=r" (x) : : : lab);
12 a0 = x;
14 lab:
15 return x + a1 + a2 + 1;