aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/wmul-2.c
blob: 0a82654450d382d1f98d05512d2492dc539cc860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-require-effective-target ia32 } */

void vec_mpy(int y[], const int x[], int scaler)
{
 int i;

 for (i = 0; i < 150; i++)
   y[i] += (((long long)scaler * x[i]) >> 31);
}

/* { dg-final { scan-assembler-times "imull" 1 } } */