Skip to content

Commit

Permalink
[NFC] Fix argument types in doxygen comment
Browse files Browse the repository at this point in the history
The argument types for _mm_extract_epi16 and _mm_insert_epi16 were
incorrectly identified as '__m256i' instead of '__m128i'.  Introduced
by df08b34, and fixed here.
  • Loading branch information
wjristow committed Apr 26, 2022
1 parent f6d209b commit 35e7b4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clang/lib/Headers/emmintrin.h
Expand Up @@ -4127,7 +4127,7 @@ static __inline__ __m128i __DEFAULT_FN_ATTRS _mm_packus_epi16(__m128i __a,
/// \headerfile <x86intrin.h>
///
/// \code
/// __m128i _mm_extract_epi16(__m256i a, const int imm);
/// __m128i _mm_extract_epi16(__m128i a, const int imm);
/// \endcode
///
/// This intrinsic corresponds to the <c> VPEXTRW / PEXTRW </c> instruction.
Expand Down Expand Up @@ -4159,7 +4159,7 @@ static __inline__ __m128i __DEFAULT_FN_ATTRS _mm_packus_epi16(__m128i __a,
/// \headerfile <x86intrin.h>
///
/// \code
/// __m128i _mm_insert_epi16(__m256i a, int b, const int imm);
/// __m128i _mm_insert_epi16(__m128i a, int b, const int imm);
/// \endcode
///
/// This intrinsic corresponds to the <c> VPINSRW / PINSRW </c> instruction.
Expand Down

0 comments on commit 35e7b4f

Please sign in to comment.