2010-04-18 23:30:18 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -target-feature +ssse3 -verify %s
|
2010-04-20 02:26:40 +08:00
|
|
|
// Temporarily xfail this on windows.
|
|
|
|
// XFAIL: win32
|
2010-04-17 10:36:08 +08:00
|
|
|
|
|
|
|
#include <tmmintrin.h>
|
|
|
|
|
|
|
|
__m64 foo(__m64 a, __m64 b, int c)
|
|
|
|
{
|
2010-04-20 02:23:02 +08:00
|
|
|
return _mm_alignr_pi8(a, b, c); // expected-error {{argument to '__builtin_ia32_palignr' must be a constant integer}}
|
2010-04-17 10:36:08 +08:00
|
|
|
}
|