From 9fbe14586d01caccd5a10862fcdd40a472214edc Mon Sep 17 00:00:00 2001
From: Robert Bocchino
Date: Tue, 10 Jan 2006 19:31:34 +0000
Subject: [PATCH] Expanded the documentation for constant expressions to cover
select and extractelement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25183 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/LangRef.html | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 2a1d3a1bda1..cefac99930b 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1086,6 +1086,16 @@ following is the syntax for constant expressions:
instruction, the index list may have zero or more indexes, which are required
to make sense for the type of "CSTPTR".
+ select ( COND, VAL1, VAL2 )
+
+ Perform the select operation on
+ constants.
+
+ extractelement ( VAL, IDX )
+
+ Perform the extractelement
+ operation on constants.
+
OPCODE ( LHS, RHS )
Perform the specified operation of the LHS and RHS constants. OPCODE may
--
2.34.1