This reverts commit d618f1c3b1.
This commit wasn't reviewed ahead of time and significant concerns were
raised immediately after it landed. According to our developer policy
this warrants immediate revert of the commit.
https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy
Differential Revision: https://reviews.llvm.org/D155509
14 lines
384 B
C++
14 lines
384 B
C++
// RUN: %clang_cc1 %s -emit-llvm -o /dev/null
|
|
// <rdar://problem/7096460>
|
|
typedef void (*Func) ();
|
|
typedef long long m64 __attribute__((__vector_size__(8), __may_alias__));
|
|
static inline m64 __attribute__((__always_inline__, __nodebug__)) _mm_set1_pi16() {}
|
|
template <class MM>
|
|
static void Bork() {
|
|
const m64 mmx_0x00ff = _mm_set1_pi16();
|
|
}
|
|
struct A {};
|
|
Func arr[] = {
|
|
Bork<A>
|
|
};
|