From: Reid Spencer Date: Mon, 4 Dec 2006 19:23:19 +0000 (+0000) Subject: Document the icmp and fcmp constant expressions. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=01c4259d4193f7f4471360b4561cb2ab14376d7d;p=oota-llvm.git Document the icmp and fcmp constant expressions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32188 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 7f0353102fa..7cbcef5b5cc 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1255,7 +1255,13 @@ following is the syntax for constant expressions:

select ( COND, VAL1, VAL2 )
Perform the select operation on - constants. + constants.
+ +
icmp COND ( VAL1, VAL2 )
+
Performs the icmp operation on constants.
+ +
fcmp COND ( VAL1, VAL2 )
+
Performs the fcmp operation on constants.
extractelement ( VAL, IDX )
@@ -1265,13 +1271,13 @@ following is the syntax for constant expressions:

insertelement ( VAL, ELT, IDX )
Perform the insertelement - operation on constants. + operation on constants.
shufflevector ( VEC1, VEC2, IDXMASK )
Perform the shufflevector - operation on constants. + operation on constants.
OPCODE ( LHS, RHS )