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

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 } } */