From 1729e9aa26ce74845ef7d4e92fe4caf3ea4254a4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 8 Apr 2006 04:40:53 +0000 Subject: [PATCH] Wrap long lines, fix verification error llvm-svn: 27531 --- docs/LangRef.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index e3b04c0e063..af50b9c6b45 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -585,7 +585,7 @@ a power of 2.

- Module-Level Inline Assembly + Module-Level Inline Assembly
@@ -2662,8 +2662,10 @@ 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> <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.
+  %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.