PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr65427.c
blobdd28a5d941255a0a288079cb0939c11f111459c7
1 /* PR tree-optimization/65427 */
3 typedef int V __attribute__ ((vector_size (8 * sizeof (int))));
4 V a, b, c, d, e, f;
6 __attribute__((noinline, noclone)) void
7 foo (int x, int y)
9 do
11 if (x)
12 d = a ^ c;
13 else
14 d = a ^ b;
16 while (y);
19 int
20 main ()
22 a = (V) { 1, 2, 3, 4, 5, 6, 7, 8 };
23 b = (V) { 0x40, 0x80, 0x40, 0x80, 0x40, 0x80, 0x40, 0x80 };
24 e = (V) { 0x41, 0x82, 0x43, 0x84, 0x45, 0x86, 0x47, 0x88 };
25 foo (0, 0);
26 if (__builtin_memcmp (&d, &e, sizeof (V)) != 0)
27 __builtin_abort ();
28 c = (V) { 0x80, 0x40, 0x80, 0x40, 0x80, 0x40, 0x80, 0x40 };
29 f = (V) { 0x81, 0x42, 0x83, 0x44, 0x85, 0x46, 0x87, 0x48 };
30 foo (1, 0);
31 if (__builtin_memcmp (&d, &f, sizeof (V)) != 0)
32 __builtin_abort ();
33 return 0;