mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr92371.c
blob0c78d32f471db9847dff95054a856995224490e5
1 /* { dg-do compile } */
2 /* { dg-additional-options "-ftree-vectorize" } */
4 int a, b;
5 void d()
7 int c = sizeof(int);
8 for (; a; a++)
9 c *= sizeof(int);
10 c *= sizeof(int);
11 b = c;