mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr70450.c
blobee5e24d0522402ff60f1e83e400aa2ebe8c12627
1 /* { dg-do run } */
2 /* { dg-require-effective-target lp64 } */
4 unsigned long int a = 2UL;
5 int b = 2;
6 unsigned long int c = 2UL;
8 void foo ()
10 c = 2 * ((2 * a) * (2 * (-b)));
13 int main ()
15 foo();
16 if (c != 18446744073709551584UL)
17 __builtin_abort();
18 return 0;