aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/pr14552.c
blob: 659257c329048e6000ac28f183d3fa3645c8a20a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-O2 -mmmx" } */

typedef short mmxw  __attribute__ ((vector_size (8)));
typedef int   mmxdw __attribute__ ((vector_size (8)));

mmxdw dw;
mmxw w;

void test()
{
  w+=w;
  dw= (mmxdw)w;
}

/* { dg-final { scan-assembler-not "%mm" } } */