blob: de499f852806e78e750dcb028f9105e1952e2363 [file] [log] [blame]
Daniel Dunbarb5cac862008-11-11 04:09:47 +00001// RUN: clang -emit-llvm < %s | grep 'shufflevector' | count 1
Eli Friedmand38617c2008-05-14 19:38:39 +00002typedef int v4si __attribute__ ((vector_size (16)));
3
4v4si a(v4si x, v4si y) {return __builtin_shufflevector(x, y, 3, 2, 5, 7);}
5