fix an embarassing typo that resulted in llvm-gcc bootstrap miscompare
[llvm/avr.git] / test / FrontendC++ / 2009-08-11-VectorRetTy.cpp
blobb2c3ba185b5c114c87e1790e6bd2e147e91039c5
1 // RUN: %llvmgxx %s -c -o /dev/null
2 // <rdar://problem/7096460>
3 typedef void (*Func) ();
4 typedef long long m64 __attribute__((__vector_size__(8), __may_alias__));
5 static inline m64 __attribute__((__always_inline__, __nodebug__)) _mm_set1_pi16() {}
6 template <class MM>
7 static void Bork() {
8 const m64 mmx_0x00ff = _mm_set1_pi16();
10 struct A {};
11 Func arr[] = {
12 Bork<A>