diff options
author | Douglas Yung <douglas.yung@sony.com> | 2018-01-02 20:42:53 +0000 |
---|---|---|
committer | Douglas Yung <douglas.yung@sony.com> | 2018-01-02 20:42:53 +0000 |
commit | df1e9ef15676d5b5b2e2d49e8579917be34e695c (patch) | |
tree | 439f5ce55f358956400b8196baf8f39d87fbccba /clang/lib/Headers | |
parent | 0686df106c394f62604b7d638863d6c9194f4612 (diff) | |
download | bcm5719-llvm-df1e9ef15676d5b5b2e2d49e8579917be34e695c.tar.gz bcm5719-llvm-df1e9ef15676d5b5b2e2d49e8579917be34e695c.zip |
[DOXYGEN] Fix doxygen and content issues in pmmintrin.h
- Fix incorrect wording in various intrinsic descriptions. Previously the descriptions used "low-order" and "high-order" when the intended meaning was "even-indexed" and "odd-indexed".
This patch was made by Craig Flores
Differential Revision: https://reviews.llvm.org/D41518
llvm-svn: 321670
Diffstat (limited to 'clang/lib/Headers')
-rw-r--r-- | clang/lib/Headers/pmmintrin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Headers/pmmintrin.h b/clang/lib/Headers/pmmintrin.h index 559ece2e397..7ec08a1bcbb 100644 --- a/clang/lib/Headers/pmmintrin.h +++ b/clang/lib/Headers/pmmintrin.h @@ -115,8 +115,8 @@ _mm_hsub_ps(__m128 __a, __m128 __b) return __builtin_ia32_hsubps((__v4sf)__a, (__v4sf)__b); } -/// \brief Moves and duplicates high-order (odd-indexed) values from a 128-bit -/// vector of [4 x float] to float values stored in a 128-bit vector of +/// \brief Moves and duplicates odd-indexed values from a 128-bit vector +/// of [4 x float] to float values stored in a 128-bit vector of /// [4 x float]. /// /// \headerfile <x86intrin.h> @@ -137,7 +137,7 @@ _mm_movehdup_ps(__m128 __a) return __builtin_shufflevector((__v4sf)__a, (__v4sf)__a, 1, 1, 3, 3); } -/// \brief Duplicates low-order (even-indexed) values from a 128-bit vector of +/// \brief Duplicates even-indexed values from a 128-bit vector of /// [4 x float] to float values stored in a 128-bit vector of [4 x float]. /// /// \headerfile <x86intrin.h> |