summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-06-23 15:26:37 +0000
committerDan Gohman <gohman@apple.com>2008-06-23 15:26:37 +0000
commit52bb2db70998c42c99d22069ac66eb7bbb492f3a (patch)
tree7b4f26907e9b633a82300ad5c37657df91d43bc8 /docs
parente9c80f4d576bf1ff682958d447c1a60fa9348da3 (diff)
downloadllvm-52bb2db70998c42c99d22069ac66eb7bbb492f3a.tar.gz
llvm-52bb2db70998c42c99d22069ac66eb7bbb492f3a.tar.bz2
llvm-52bb2db70998c42c99d22069ac66eb7bbb492f3a.tar.xz
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
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index cd8b7e9f96..01b971bf2f 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -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>