diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-05-29 06:44:15 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-05-29 06:44:15 +0000 |
commit | 9ab9a7fb293c457755d0c3ad9cc4256a3e7c057a (patch) | |
tree | 9737e9648c3a60cd1533e37e8461c930abe86eae | |
parent | 928a190a8ee8a9d5b0929ec8fdab32a44e08e25c (diff) | |
download | bcm5719-llvm-9ab9a7fb293c457755d0c3ad9cc4256a3e7c057a.tar.gz bcm5719-llvm-9ab9a7fb293c457755d0c3ad9cc4256a3e7c057a.zip |
Document aggregate operation constant expressions.
llvm-svn: 105098
-rw-r--r-- | llvm/docs/LangRef.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index a0f59cf6e5a..2d89b71ec41 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/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> |