PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr47780.c
blob89fe4093dfc4d6e3672850197702ef09ace98130
1 /* PR debug/47780 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -fgcse -fgcse-las -fstack-protector-all -fno-tree-ccp -fno-tree-dominator-opts -fcompare-debug -Wno-psabi" } */
5 typedef int V2SF __attribute__ ((vector_size (128)));
7 V2SF
8 foo (int x, V2SF a)
10 V2SF b = a + (V2SF) {};
11 while (x--)
12 a += b;
13 return a;