blob: 9a3ae610282e0db9026434b2c46450e2d72d8a1d [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -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