aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr32961.c
blob: a2326289af982c72528770f22ef96c1d21ed0b0f (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O0 -msse2" } */

#include <xmmintrin.h>

void x (int n)
{
  __m128i a;
  a = _mm_slli_epi32 (a, n);
}