diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-08-08 08:30:05 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-08-08 08:30:05 +0000 |
commit | d74e3988fb7daa63fe1efb62659fbad34613f8be (patch) | |
tree | 07951d51f90e6c743d3088ec990b83e5b6bfc89f | |
parent | 10fe93d57c11f068aa4d78eb4ca7f60329818306 (diff) |
Fix some typos I made when adding alternate intrinsic names.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110545 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/xmmintrin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Headers/xmmintrin.h b/lib/Headers/xmmintrin.h index f0d252c456..dabfc11be6 100644 --- a/lib/Headers/xmmintrin.h +++ b/lib/Headers/xmmintrin.h @@ -460,7 +460,7 @@ _mm_cvtsi32_ss(__m128 a, int b) } static __inline__ __m128 __attribute__((__always_inline__, __nodebug__)) -_mm_cvtt_si2ss(__m128 a, int b) +_mm_cvt_si2ss(__m128 a, int b) { return _mm_cvtsi32_ss(a, b); } @@ -483,7 +483,7 @@ _mm_cvtpi32_ps(__m128 a, __m64 b) } static __inline__ __m128 __attribute__((__always_inline__, __nodebug__)) -_mm_cvtt_pi2ps(__m128 a, __m64 b) +_mm_cvt_pi2ps(__m128 a, __m64 b) { return _mm_cvtpi32_ps(a, b); } |