blob: 832b54b93f51bcb724eae8f240edc0d039747464 [file] [log] [blame]
Daniel Dunbard13ada12010-04-18 15:30:18 +00001// RUN: %clang_cc1 -fsyntax-only -target-feature +ssse3 -verify %s
Eric Christopher26d24272010-04-17 02:36:08 +00002
3#include <tmmintrin.h>
4
5__m64 foo(__m64 a, __m64 b, int c)
6{
7 return _mm_alignr_pi8(a, b, c); // expected-error {{argument 2 to '__builtin_ia32_palignr' must be a constant integer}}
8}