Пример #1
0
__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;
}