blob: f365844c6d43c03836290bd1ba9756eba968cf9f [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -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