Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / pr32912-3.c
blob407ac524f2d0fb781aec329cc13a198047f68f9d
1 /* { dg-do compile } */
2 /* { dg-options "-w -O2 -fdump-tree-optimized" } */
4 typedef int __m128i __attribute__ ((__vector_size__ (16)));
6 __m128i
7 bar (void)
9 __m128i x = { 0x11111111, 0x22222222, 0x44444444 };
10 return ~x;
13 /* { dg-final { scan-tree-dump-not "~\{" "optimized" } } */
14 /* { dg-final { cleanup-tree-dump "optimized" } } */