mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr113396.c
blob585f717bddab735bc4824806f5ebf6165a0ea89b
1 /* { dg-do run } */
2 /* { dg-require-effective-target int128 } */
4 unsigned char m[] = {5, 79, 79, 79, 79};
5 __int128 p;
6 int main()
8 int g1 = 0;
9 p = 0;
10 for (int aj = 0; aj < 256; aj++)
12 m[0] = -4;
13 for (; p >= 0; p -= 1) {
14 g1 = m[p];
17 if (g1 != 0xfc)
18 __builtin_abort();