From a5b6f45b6884e1df691d57000cca927fc01bbcae Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Wed, 28 Oct 2009 13:14:50 +0000 Subject: [PATCH] use metavariable instead of SSA name %result for consistency git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85388 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 337f8a8a49b..af0e5640c5b 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -3728,7 +3728,7 @@ Instruction
Example:
-  %result = extractelement <4 x i32> %vec, i32 0    ; yields i32
+  <result> = extractelement <4 x i32> %vec, i32 0    ; yields i32
 
@@ -3764,7 +3764,7 @@ Instruction
Example:
-  %result = insertelement <4 x i32> %vec, i32 1, i32 0    ; yields <4 x i32>
+  <result> = insertelement <4 x i32> %vec, i32 1, i32 0    ; yields <4 x i32>
 
@@ -3805,13 +3805,13 @@ Instruction
Example:
-  %result = shufflevector <4 x i32> %v1, <4 x i32> %v2, 
+  <result> = shufflevector <4 x i32> %v1, <4 x i32> %v2, 
                           <4 x i32> <i32 0, i32 4, i32 1, i32 5>  ; yields <4 x i32>
-  %result = shufflevector <4 x i32> %v1, <4 x i32> undef, 
+  <result> = shufflevector <4 x i32> %v1, <4 x i32> undef, 
                           <4 x i32> <i32 0, i32 1, i32 2, i32 3>  ; yields <4 x i32> - Identity shuffle.
-  %result = shufflevector <8 x i32> %v1, <8 x i32> undef, 
+  <result> = shufflevector <8 x i32> %v1, <8 x i32> undef, 
                           <4 x i32> <i32 0, i32 1, i32 2, i32 3>  ; yields <4 x i32>
-  %result = shufflevector <4 x i32> %v1, <4 x i32> %v2, 
+  <result> = shufflevector <4 x i32> %v1, <4 x i32> %v2, 
                           <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7 >  ; yields <8 x i32>
 
@@ -3857,7 +3857,7 @@ Instruction
Example:
-  %result = extractvalue {i32, float} %agg, 0    ; yields i32
+  <result> = extractvalue {i32, float} %agg, 0    ; yields i32
 
@@ -3896,7 +3896,7 @@ Instruction
Example:
-  %result = insertvalue {i32, float} %agg, i32 1, 0    ; yields {i32, float}
+  <result> = insertvalue {i32, float} %agg, i32 1, 0    ; yields {i32, float}