Fix the syntax of insertvalue in the example.
authorDan Gohman <gohman@apple.com>
Mon, 23 Jun 2008 15:26:37 +0000 (15:26 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 23 Jun 2008 15:26:37 +0000 (15:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52623 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LangRef.html

index cd8b7e9f967a5e607af176bccbef90a141901e1f..01b971bf2f0a9402a06394a4ec68ffff9503b983 100644 (file)
@@ -2981,7 +2981,7 @@ specified by the indices is that of <tt>elt</tt>.
 <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>