From 52bb2db70998c42c99d22069ac66eb7bbb492f3a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 23 Jun 2008 15:26:37 +0000 Subject: [PATCH] Fix the syntax of insertvalue in the example. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52623 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index cd8b7e9f967..01b971bf2f0 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2981,7 +2981,7 @@ specified by the indices is that of elt.
Example:
-  %result = insertvalue {i32, float} %agg, 1, 0    ; yields {i32, float}
+  %result = insertvalue {i32, float} %agg, i32 1, 0    ; yields {i32, float}