summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-10-01 00:48:59 +0000
committerDale Johannesen <dalej@apple.com>2010-10-01 00:48:59 +0000
commit21fe99bbc8c47699ab7bea4351d482a73bf51e12 (patch)
tree266e71a469ee46bd3a8ad9f4c20a2f571e5a4bb4 /docs
parentbac4c52131b79bf3c37075baf95edb93338b30c0 (diff)
downloadllvm-21fe99bbc8c47699ab7bea4351d482a73bf51e12.tar.gz
llvm-21fe99bbc8c47699ab7bea4351d482a73bf51e12.tar.bz2
llvm-21fe99bbc8c47699ab7bea4351d482a73bf51e12.tar.xz
Add some doc for the x86mmx type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115255 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index eb789c0d50..d4ce54267d 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -62,6 +62,7 @@
<ol>
<li><a href="#t_integer">Integer Type</a></li>
<li><a href="#t_floating">Floating Point Types</a></li>
+ <li><a href="#t_x86mmx">X86mmx Type</a></li>
<li><a href="#t_void">Void Type</a></li>
<li><a href="#t_label">Label Type</a></li>
<li><a href="#t_metadata">Metadata Type</a></li>
@@ -1484,6 +1485,7 @@ Classifications</a> </div>
<td><a href="#t_label">label</a>,
<a href="#t_void">void</a>,
<a href="#t_floating">floating point</a>,
+ <a href="#t_x86mmx">x86mmx</a>,
<a href="#t_metadata">metadata</a>.</td>
</tr>
<tr>
@@ -1571,6 +1573,21 @@ Classifications</a> </div>
</div>
<!-- _______________________________________________________________________ -->
+<div class="doc_subsubsection"> <a name="t_x86mmx">X86mmx Type</a> </div>
+
+<div class="doc_text">
+
+<h5>Overview:</h5>
+<p>The x86mmx 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 and/or results of this type. There are no arrays, vectors or constants of this type.</p>
+
+<h5>Syntax:</h5>
+<pre>
+ void
+</pre>
+
+</div>
+
+<!-- _______________________________________________________________________ -->
<div class="doc_subsubsection"> <a name="t_void">Void Type</a> </div>
<div class="doc_text">
@@ -2050,6 +2067,7 @@ Classifications</a> </div>
they match the long double format on your target. All hexadecimal formats
are big-endian (sign bit at the left).</p>
+<p>There are no constants of type x86mmx.</p>
</div>
<!-- ======================================================================= -->