summaryrefslogtreecommitdiff
path: root/utils/TableGen/DAGISelEmitter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-12-09 22:57:42 +0000
committerChris Lattner <sabre@nondot.org>2005-12-09 22:57:42 +0000
commit5b21be76e1542276983d376c59ce542bcb6c921a (patch)
treed68fd3efa9835032c43ebd7d9a9fc11352b9cdd4 /utils/TableGen/DAGISelEmitter.h
parentab24ed2a322ec0c8be04ec684c75bc73faa1d346 (diff)
downloadllvm-5b21be76e1542276983d376c59ce542bcb6c921a.tar.gz
llvm-5b21be76e1542276983d376c59ce542bcb6c921a.tar.bz2
llvm-5b21be76e1542276983d376c59ce542bcb6c921a.tar.xz
Add a new SDTCisPtrTy constraint, which indicates that an operand must have
the same type as the pointer type for a target. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/DAGISelEmitter.h')
-rw-r--r--utils/TableGen/DAGISelEmitter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/DAGISelEmitter.h b/utils/TableGen/DAGISelEmitter.h
index 5c3bbcb93d..7a050c53e1 100644
--- a/utils/TableGen/DAGISelEmitter.h
+++ b/utils/TableGen/DAGISelEmitter.h
@@ -45,8 +45,8 @@ namespace llvm {
unsigned OperandNo; // The operand # this constraint applies to.
enum {
- SDTCisVT, SDTCisInt, SDTCisFP, SDTCisSameAs, SDTCisVTSmallerThanOp,
- SDTCisOpSmallerThanOp
+ SDTCisVT, SDTCisPtrTy, SDTCisInt, SDTCisFP, SDTCisSameAs,
+ SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp
} ConstraintType;
union { // The discriminated union.