opnsense-src/test/CodeGen/builtinshufflevector.c

6 lines
198 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -emit-llvm < %s | grep 'shufflevector' | count 1
2009-06-02 13:58:47 -04:00
typedef int v4si __attribute__ ((vector_size (16)));
v4si a(v4si x, v4si y) {return __builtin_shufflevector(x, y, 3, 2, 5, 7);}