summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-04 19:23:19 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-04 19:23:19 +0000
commit01c4259d4193f7f4471360b4561cb2ab14376d7d (patch)
tree76699396e4c5159e422bada45ff42bed8c9189b6 /docs
parent3f4d6d185bdc11e2e94d9921ee955bb42473f91e (diff)
downloadllvm-01c4259d4193f7f4471360b4561cb2ab14376d7d.tar.gz
llvm-01c4259d4193f7f4471360b4561cb2ab14376d7d.tar.bz2
llvm-01c4259d4193f7f4471360b4561cb2ab14376d7d.tar.xz
Document the icmp and fcmp constant expressions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32188 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html12
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 7f0353102f..7cbcef5b5c 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1255,7 +1255,13 @@ following is the syntax for constant expressions:</p>
<dt><b><tt>select ( COND, VAL1, VAL2 )</tt></b></dt>
<dd>Perform the <a href="#i_select">select operation</a> on
- constants.
+ constants.</dd>
+
+ <dt><b><tt>icmp COND ( VAL1, VAL2 )</tt></b></dt>
+ <dd>Performs the <a href="#i_icmp">icmp operation</a> on constants.</dd>
+
+ <dt><b><tt>fcmp COND ( VAL1, VAL2 )</tt></b></dt>
+ <dd>Performs the <a href="#i_fcmp">fcmp operation</a> on constants.</dd>
<dt><b><tt>extractelement ( VAL, IDX )</tt></b></dt>
@@ -1265,13 +1271,13 @@ following is the syntax for constant expressions:</p>
<dt><b><tt>insertelement ( VAL, ELT, IDX )</tt></b></dt>
<dd>Perform the <a href="#i_insertelement">insertelement
- operation</a> on constants.
+ operation</a> on constants.</dd>
<dt><b><tt>shufflevector ( VEC1, VEC2, IDXMASK )</tt></b></dt>
<dd>Perform the <a href="#i_shufflevector">shufflevector
- operation</a> on constants.
+ operation</a> on constants.</dd>
<dt><b><tt>OPCODE ( LHS, RHS )</tt></b></dt>