Skip to content

Commit e9d3340

Browse files
authored
[X86] _mm_addsub_pd is not valid for constexpr (#167363)
Typo in #156822 Part of #166814
1 parent b639b6a commit e9d3340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Headers/pmmintrin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ _mm_moveldup_ps(__m128 __a)
166166
/// A 128-bit vector of [2 x double] containing the right source operand.
167167
/// \returns A 128-bit vector of [2 x double] containing the alternating sums
168168
/// and differences of both operands.
169-
static __inline__ __m128d __DEFAULT_FN_ATTRS_CONSTEXPR
169+
static __inline__ __m128d __DEFAULT_FN_ATTRS
170170
_mm_addsub_pd(__m128d __a, __m128d __b) {
171171
return __builtin_ia32_addsubpd((__v2df)__a, (__v2df)__b);
172172
}

0 commit comments

Comments
 (0)