[llvm-commits] [llvm] r105098 - /llvm/trunk/docs/LangRef.html
Nick Lewycky
nicholas at mxc.ca
Fri May 28 23:44:15 PDT 2010
Author: nicholas
Date: Sat May 29 01:44:15 2010
New Revision: 105098
URL: http://llvm.org/viewvc/llvm-project?rev=105098&view=rev
Log:
Document aggregate operation constant expressions.
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=105098&r1=105097&r2=105098&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sat May 29 01:44:15 2010
@@ -2574,6 +2574,18 @@
<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>
More information about the llvm-commits
mailing list