summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2014-03-05 02:41:37 +0000
committerReid Kleckner <reid@kleckner.net>2014-03-05 02:41:37 +0000
commit3b9afd308728feb1853596bbb8ccd57cf5f6b3b9 (patch)
tree24c573fda2a5572bb9046e0bec91a3959be4ec34 /docs
parent1372b786798f5be7497644bcfc3d8ecdd685e6d9 (diff)
downloadllvm-3b9afd308728feb1853596bbb8ccd57cf5f6b3b9.tar.gz
llvm-3b9afd308728feb1853596bbb8ccd57cf5f6b3b9.tar.bz2
llvm-3b9afd308728feb1853596bbb8ccd57cf5f6b3b9.tar.xz
Change x86mmx -> x86_mmx in LangRef.rst
The correct name of the type in LLVM assembly is "x86_mmx". Also remove the reST label "t_x86mmx" because it was unused anyway. Patch by Manuel Jacob! Differential Revision: http://llvm-reviews.chandlerc.com/D2955 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202929 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.rst12
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/LangRef.rst b/docs/LangRef.rst
index 06e6de65f0..9820fd8a57 100644
--- a/docs/LangRef.rst
+++ b/docs/LangRef.rst
@@ -1743,14 +1743,12 @@ Floating Point Types
* - ``ppc_fp128``
- 128-bit floating point value (two 64-bits)
-.. _t_x86mmx:
-
-X86mmx Type
-"""""""""""
+X86_mmx Type
+""""""""""""
:Overview:
-The x86mmx type represents a value held in an MMX register on an x86
+The x86_mmx type represents a value held in an MMX register on an x86
machine. The operations allowed on it are quite limited: parameters and
return values, load and store, and bitcast. User-specified MMX
instructions are represented as intrinsic or asm calls with arguments
@@ -1761,7 +1759,7 @@ of this type.
::
- x86mmx
+ x86_mmx
.. _t_pointer:
@@ -2046,7 +2044,7 @@ The IEEE 16-bit format (half precision) is represented by ``0xH``
followed by 4 hexadecimal digits. All hexadecimal formats are big-endian
(sign bit at the left).
-There are no constants of type x86mmx.
+There are no constants of type x86_mmx.
.. _complexconstants: