[llvm-commits] [llvm] r52623 - /llvm/trunk/docs/LangRef.html

Dan Gohman gohman at apple.com
Mon Jun 23 08:26:38 PDT 2008


Author: djg
Date: Mon Jun 23 10:26:37 2008
New Revision: 52623

URL: http://llvm.org/viewvc/llvm-project?rev=52623&view=rev
Log:
Fix the syntax of insertvalue in the example.

Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=52623&r1=52622&r2=52623&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Mon Jun 23 10:26:37 2008
@@ -2981,7 +2981,7 @@
 <h5>Example:</h5>
 
 <pre>
-  %result = insertvalue {i32, float} %agg, 1, 0    <i>; yields {i32, float}</i>
+  %result = insertvalue {i32, float} %agg, i32 1, 0    <i>; yields {i32, float}</i>
 </pre>
 </div>
 





More information about the llvm-commits mailing list