* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr14552.c
blob659257c329048e6000ac28f183d3fa3645c8a20a
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mmmx" } */
4 typedef short mmxw __attribute__ ((vector_size (8)));
5 typedef int mmxdw __attribute__ ((vector_size (8)));
7 mmxdw dw;
8 mmxw w;
10 void test()
12 w+=w;
13 dw= (mmxdw)w;
16 /* { dg-final { scan-assembler-not "%mm" } } */