@@ -1618,9 +1618,8 @@ _mm_cvtt_ps2pi(__m128 __a)
1618
1618
// / \returns A 128-bit vector of [4 x float] whose lower 32 bits contain the
1619
1619
// / converted value of the second operand. The upper 96 bits are copied from
1620
1620
// / the upper 96 bits of the first operand.
1621
- static __inline__ __m128 __DEFAULT_FN_ATTRS
1622
- _mm_cvtsi32_ss (__m128 __a, int __b)
1623
- {
1621
+ static __inline__ __m128 __DEFAULT_FN_ATTRS_CONSTEXPR _mm_cvtsi32_ss (__m128 __a,
1622
+ int __b) {
1624
1623
__a[0 ] = __b;
1625
1624
return __a;
1626
1625
}
@@ -1641,9 +1640,8 @@ _mm_cvtsi32_ss(__m128 __a, int __b)
1641
1640
// / \returns A 128-bit vector of [4 x float] whose lower 32 bits contain the
1642
1641
// / converted value of the second operand. The upper 96 bits are copied from
1643
1642
// / the upper 96 bits of the first operand.
1644
- static __inline__ __m128 __DEFAULT_FN_ATTRS
1645
- _mm_cvt_si2ss (__m128 __a, int __b)
1646
- {
1643
+ static __inline__ __m128 __DEFAULT_FN_ATTRS_CONSTEXPR _mm_cvt_si2ss (__m128 __a,
1644
+ int __b) {
1647
1645
return _mm_cvtsi32_ss (__a, __b);
1648
1646
}
1649
1647
@@ -1665,9 +1663,8 @@ _mm_cvt_si2ss(__m128 __a, int __b)
1665
1663
// / \returns A 128-bit vector of [4 x float] whose lower 32 bits contain the
1666
1664
// / converted value of the second operand. The upper 96 bits are copied from
1667
1665
// / the upper 96 bits of the first operand.
1668
- static __inline__ __m128 __DEFAULT_FN_ATTRS
1669
- _mm_cvtsi64_ss (__m128 __a, long long __b)
1670
- {
1666
+ static __inline__ __m128 __DEFAULT_FN_ATTRS_CONSTEXPR
1667
+ _mm_cvtsi64_ss (__m128 __a, long long __b) {
1671
1668
__a[0 ] = __b;
1672
1669
return __a;
1673
1670
}
0 commit comments