[RISCV] Simplify usage of SplatPat_simm5_plus1. NFC (#125340)
[llvm-project.git] / clang / test / CodeGenCXX / 2009-08-11-VectorRetTy.cpp
blob04b1067aabdec6b479ee145d729a94a3f7b1b32a
1 // RUN: %clang_cc1 %s -emit-llvm -o /dev/null
2 typedef void (*Func) ();
3 typedef long long m64 __attribute__((__vector_size__(8), __may_alias__));
4 static inline m64 __attribute__((__always_inline__, __nodebug__)) _mm_set1_pi16() { return {}; }
5 template <class MM>
6 static void Bork() {
7 const m64 mmx_0x00ff = _mm_set1_pi16();
9 struct A {};
10 Func arr[] = {
11 Bork<A>