summaryrefslogtreecommitdiff
path: root/docs/LangRef.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-04-08 04:40:53 +0000
committerChris Lattner <sabre@nondot.org>2006-04-08 04:40:53 +0000
commit1eeeb0cce3f389db960fbce88c9f9a8d50558ceb (patch)
treeff88492cfde66a0a70bc6aaad62be26a573cbc08 /docs/LangRef.html
parent1bb8d300184570d033f3c3a5b9e0e0a392e2b407 (diff)
downloadllvm-1eeeb0cce3f389db960fbce88c9f9a8d50558ceb.tar.gz
llvm-1eeeb0cce3f389db960fbce88c9f9a8d50558ceb.tar.bz2
llvm-1eeeb0cce3f389db960fbce88c9f9a8d50558ceb.tar.xz
Wrap long lines, fix verification error
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r--docs/LangRef.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index e3b04c0e06..af50b9c6b4 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -585,7 +585,7 @@ a power of 2.</p>
<!-- ======================================================================= -->
<div class="doc_subsection">
- <a name="moduleasm">Module-Level Inline Assembly</a></li>
+ <a name="moduleasm">Module-Level Inline Assembly</a>
</div>
<div class="doc_text">
@@ -2662,8 +2662,10 @@ operand may be undef if performing a shuffle from only one vector.
<h5>Example:</h5>
<pre>
- %result = shufflevector &lt;4 x int&gt; %v1, &lt;4 x int&gt; %v2, &lt;4 x uint&gt; &lt;uint 0, uint 4, uint 1, uint 5&gt; <i>; yields &lt;4 x int&gt;</i>
- %result = shufflevector &lt;4 x int&gt; %v1, &lt;4 x int&gt; undef, &lt;4 x uint&gt; &lt;uint 0, uint 1, uint 2, uint 3&gt; <i>; yields &lt;4 x int&gt;</i> - Identity shuffle.
+ %result = shufflevector &lt;4 x int&gt; %v1, &lt;4 x int&gt; %v2,
+ &lt;4 x uint&gt; &lt;uint 0, uint 4, uint 1, uint 5&gt; <i>; yields &lt;4 x int&gt;</i>
+ %result = shufflevector &lt;4 x int&gt; %v1, &lt;4 x int&gt; undef,
+ &lt;4 x uint&gt; &lt;uint 0, uint 1, uint 2, uint 3&gt; <i>; yields &lt;4 x int&gt;</i> - Identity shuffle.
</pre>
</div>