aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-04-08 04:39:19 +0000
committerChris Lattner <sabre@nondot.org>2006-04-08 04:39:19 +0000
commit1bb8d300184570d033f3c3a5b9e0e0a392e2b407 (patch)
tree0d7f2233051d8840fcc58642af38584ad8af1165 /docs
parent3e104b11168da4692b69cc6b236c1da22adff959 (diff)
downloadexternal_llvm-1bb8d300184570d033f3c3a5b9e0e0a392e2b407.zip
external_llvm-1bb8d300184570d033f3c3a5b9e0e0a392e2b407.tar.gz
external_llvm-1bb8d300184570d033f3c3a5b9e0e0a392e2b407.tar.bz2
use the right escapes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index d0304f9..e3b04c0 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -2662,8 +2662,8 @@ 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, <4 x uint> <uint 0, uint 4, uint 1, uint 5> <i>; yields &lt;4 x int&gt;</i>
- %result = shufflevector &lt;4 x int&gt; %v1, &lt;4 x int&gt; undef, <4 x uint> <uint 0, uint 1, uint 2, uint 3> <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>