blob: eedf99bdfb6f6317a14ce84d1525fed2637f7b39 [file] [log] [blame]
Daniel Dunbard13ada12010-04-18 15:30:18 +00001// RUN: %clang_cc1 -fsyntax-only -target-feature +ssse3 -verify %s
Eric Christopher00522ad2010-04-19 18:26:40 +00002// Temporarily xfail this on windows.
3// XFAIL: win32
Eric Christopher26d24272010-04-17 02:36:08 +00004
5#include <tmmintrin.h>
6
7__m64 foo(__m64 a, __m64 b, int c)
8{
Eric Christopher5e896552010-04-19 18:23:02 +00009 return _mm_alignr_pi8(a, b, c); // expected-error {{argument to '__builtin_ia32_palignr' must be a constant integer}}
Eric Christopher26d24272010-04-17 02:36:08 +000010}