18fbe78f6SDaniel Dunbar // RUN: %clang_cc1 -emit-llvm < %s | grep 'shufflevector' | count 1 2*2f1e9e61SEli Friedman // RUN: %clang_cc1 -emit-llvm -ftrapv < %s | grep 'shufflevector' | count 1 3a1b4ed80SEli Friedman typedef int v4si __attribute__ ((vector_size (16))); 4a1b4ed80SEli Friedman a(v4si x,v4si y)5*2f1e9e61SEli Friedmanv4si a(v4si x, v4si y) {return __builtin_shufflevector(x, y, 3, 2, 5, (2*3)+1);} 6a1b4ed80SEli Friedman 7