예제 #1
0
파일: pr32280.c 프로젝트: 0day-ci/gcc
__m128i foo1(__m128i __a)
{
 return (__m128i)__builtin_ia32_pslldqi128 (__a, 8);
}
int test2(int N) {
 __m128i white2;
 white2 = __builtin_ia32_pslldqi128(white2, N); // expected-error {{argument to '__builtin_ia32_pslldqi128' must be a constant integer}}
 return 0;
}