From 1bb8d300184570d033f3c3a5b9e0e0a392e2b407 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 8 Apr 2006 04:39:19 +0000 Subject: [PATCH] use the right escapes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27530 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index d0304f98d51..e3b04c0e063 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.
Example:
-  %result = shufflevector <4 x int> %v1, <4 x int> %v2, <4 x uint>     ; yields <4 x int>
-  %result = shufflevector <4 x int> %v1, <4 x int> undef, <4 x uint>   ; yields <4 x int> - Identity shuffle.
+  %result = shufflevector <4 x int> %v1, <4 x int> %v2, <4 x uint> <uint 0, uint 4, uint 1, uint 5>    ; yields <4 x int>
+  %result = shufflevector <4 x int> %v1, <4 x int> undef, <4 x uint> <uint 0, uint 1, uint 2, uint 3>  ; yields <4 x int> - Identity shuffle.