@@ -4778,7 +4778,8 @@ _mm_castpd_si128(__m128d __a) {
4778
4778
// / A 128-bit floating-point vector of [4 x float].
4779
4779
// / \returns A 128-bit floating-point vector of [2 x double] containing the same
4780
4780
// / bitwise pattern as the parameter.
4781
- static __inline__ __m128d __DEFAULT_FN_ATTRS _mm_castps_pd (__m128 __a) {
4781
+ static __inline__ __m128d __DEFAULT_FN_ATTRS_CONSTEXPR
4782
+ _mm_castps_pd (__m128 __a) {
4782
4783
return (__m128d)__a;
4783
4784
}
4784
4785
@@ -4793,7 +4794,8 @@ static __inline__ __m128d __DEFAULT_FN_ATTRS _mm_castps_pd(__m128 __a) {
4793
4794
// / A 128-bit floating-point vector of [4 x float].
4794
4795
// / \returns A 128-bit integer vector containing the same bitwise pattern as the
4795
4796
// / parameter.
4796
- static __inline__ __m128i __DEFAULT_FN_ATTRS _mm_castps_si128 (__m128 __a) {
4797
+ static __inline__ __m128i __DEFAULT_FN_ATTRS_CONSTEXPR
4798
+ _mm_castps_si128 (__m128 __a) {
4797
4799
return (__m128i)__a;
4798
4800
}
4799
4801
@@ -4808,7 +4810,8 @@ static __inline__ __m128i __DEFAULT_FN_ATTRS _mm_castps_si128(__m128 __a) {
4808
4810
// / A 128-bit integer vector.
4809
4811
// / \returns A 128-bit floating-point vector of [4 x float] containing the same
4810
4812
// / bitwise pattern as the parameter.
4811
- static __inline__ __m128 __DEFAULT_FN_ATTRS _mm_castsi128_ps (__m128i __a) {
4813
+ static __inline__ __m128 __DEFAULT_FN_ATTRS_CONSTEXPR
4814
+ _mm_castsi128_ps (__m128i __a) {
4812
4815
return (__m128)__a;
4813
4816
}
4814
4817
@@ -4823,7 +4826,8 @@ static __inline__ __m128 __DEFAULT_FN_ATTRS _mm_castsi128_ps(__m128i __a) {
4823
4826
// / A 128-bit integer vector.
4824
4827
// / \returns A 128-bit floating-point vector of [2 x double] containing the same
4825
4828
// / bitwise pattern as the parameter.
4826
- static __inline__ __m128d __DEFAULT_FN_ATTRS _mm_castsi128_pd (__m128i __a) {
4829
+ static __inline__ __m128d __DEFAULT_FN_ATTRS_CONSTEXPR
4830
+ _mm_castsi128_pd (__m128i __a) {
4827
4831
return (__m128d)__a;
4828
4832
}
4829
4833
0 commit comments