summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrSelectorEmitter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-12 04:56:42 +0000
committerChris Lattner <sabre@nondot.org>2003-08-12 04:56:42 +0000
commit6b666e8afea9695e18ac794376ac71bc677fedbb (patch)
treee492b12bf7f5ae03f13f25528a9db7ecac784c6d /utils/TableGen/InstrSelectorEmitter.h
parentc12a61463aa47b274a095b261391eebd9b2797dc (diff)
downloadllvm-6b666e8afea9695e18ac794376ac71bc677fedbb.tar.gz
llvm-6b666e8afea9695e18ac794376ac71bc677fedbb.tar.bz2
llvm-6b666e8afea9695e18ac794376ac71bc677fedbb.tar.xz
Add support for the Any type. Minor fixes and enhancements for BasicBlock operands
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7769 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrSelectorEmitter.h')
-rw-r--r--utils/TableGen/InstrSelectorEmitter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/InstrSelectorEmitter.h b/utils/TableGen/InstrSelectorEmitter.h
index f81ad72828..16ac6bfccf 100644
--- a/utils/TableGen/InstrSelectorEmitter.h
+++ b/utils/TableGen/InstrSelectorEmitter.h
@@ -20,7 +20,7 @@ class InstrSelectorEmitter;
///
struct NodeType {
enum ArgResultTypes {
- // Both argument and return types...
+ Any, // No constraint on type
Val, // A non-void type
Arg0, // Value matches the type of Arg0
Arg1, // Value matches the type of Arg1