summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2010-05-29 06:44:15 +0000
committerNick Lewycky <nicholas@mxc.ca>2010-05-29 06:44:15 +0000
commit9e130ce3aa79a064c592738f596382117747d166 (patch)
tree47f66cec0db1743598dda2cc7128ae5c2e39ff7a /docs
parent6ed9d40aa113bba1101a9f74c661d0d11e229f50 (diff)
downloadllvm-9e130ce3aa79a064c592738f596382117747d166.tar.gz
llvm-9e130ce3aa79a064c592738f596382117747d166.tar.bz2
llvm-9e130ce3aa79a064c592738f596382117747d166.tar.xz
Document aggregate operation constant expressions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105098 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index a0f59cf6e5..2d89b71ec4 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -2574,6 +2574,18 @@ end:
<dd>Perform the <a href="#i_shufflevector">shufflevector operation</a> on
constants.</dd>
+ <dt><b><tt>extractvalue (VAL, IDX0, IDX1, ...)</tt></b></dt>
+ <dd>Perform the <a href="#i_extractvalue">extractvalue operation</a> on
+ constants. The index list is interpreted in a similar manner as indices in
+ a '<a href="#i_getelementptr">getelementptr</a>' operation. At least one
+ index value must be specified.</dd>
+
+ <dt><b><tt>insertvalue (VAL, ELT, IDX0, IDX1, ...)</tt></b></dt>
+ <dd>Perform the <a href="#i_insertvalue">insertvalue operation</a> on
+ constants. The index list is interpreted in a similar manner as indices in
+ a '<a href="#i_getelementptr">getelementptr</a>' operation. At least one
+ index value must be specified.</dd>
+
<dt><b><tt>OPCODE (LHS, RHS)</tt></b></dt>
<dd>Perform the specified operation of the LHS and RHS constants. OPCODE may
be any of the <a href="#binaryops">binary</a>