diff options
author | Ekaterina Romanova <katya_romanova@playstation.sony.com> | 2016-12-09 18:35:50 +0000 |
---|---|---|
committer | Ekaterina Romanova <katya_romanova@playstation.sony.com> | 2016-12-09 18:35:50 +0000 |
commit | 0c1c3bbc78e4548831e307c0e527449254a2bbbb (patch) | |
tree | 138c289a4ebfca4aff0c2a538448ac58acd96a80 /clang/lib/Headers/ammintrin.h | |
parent | 7b00cf4706f7dd855096ef20313617fd89323337 (diff) | |
download | bcm5719-llvm-0c1c3bbc78e4548831e307c0e527449254a2bbbb.tar.gz bcm5719-llvm-0c1c3bbc78e4548831e307c0e527449254a2bbbb.zip |
[DOXYGEN] Improved doxygen comments for x86 intrinsics headers.
Tagged instruction names with <c> INSTR_NAME </c> to display them in typewriter font.
In the past, \c command was used, unfortunately it applied to only one word.
<c> .. </c> has the same meaning, but applies to all words in between the tags.
llvm-svn: 289249
Diffstat (limited to 'clang/lib/Headers/ammintrin.h')
-rw-r--r-- | clang/lib/Headers/ammintrin.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/lib/Headers/ammintrin.h b/clang/lib/Headers/ammintrin.h index 24deb867726..2843a7a2677 100644 --- a/clang/lib/Headers/ammintrin.h +++ b/clang/lib/Headers/ammintrin.h @@ -38,7 +38,7 @@ /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx); /// \endcode /// -/// This intrinsic corresponds to the \c EXTRQ instruction. +/// This intrinsic corresponds to the <c> EXTRQ </c> instruction. /// /// \param x /// The value from which bits are extracted. @@ -63,7 +63,7 @@ /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c EXTRQ instruction. +/// This intrinsic corresponds to the <c> EXTRQ </c> instruction. /// /// \param __x /// The value from which bits are extracted. @@ -93,7 +93,7 @@ _mm_extract_si64(__m128i __x, __m128i __y) /// const int idx); /// \endcode /// -/// This intrinsic corresponds to the \c INSERTQ instruction. +/// This intrinsic corresponds to the <c> INSERTQ </c> instruction. /// /// \param x /// The destination operand where bits will be inserted. The inserted bits @@ -126,7 +126,7 @@ _mm_extract_si64(__m128i __x, __m128i __y) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c INSERTQ instruction. +/// This intrinsic corresponds to the <c> INSERTQ </c> instruction. /// /// \param __x /// The destination operand where bits will be inserted. The inserted bits @@ -158,7 +158,7 @@ _mm_insert_si64(__m128i __x, __m128i __y) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c MOVNTSD instruction. +/// This intrinsic corresponds to the <c> MOVNTSD </c> instruction. /// /// \param __p /// The 64-bit memory location used to store the register value. @@ -176,7 +176,7 @@ _mm_stream_sd(double *__p, __m128d __a) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c MOVNTSS instruction. +/// This intrinsic corresponds to the <c> MOVNTSS </c> instruction. /// /// \param __p /// The 32-bit memory location used to store the register value. |