summaryrefslogtreecommitdiff
path: root/utils/TableGen/Record.h
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-06-09 18:31:17 +0000
committerDavid Greene <greened@obbligato.org>2009-06-09 18:31:17 +0000
commitffc0ab6037aa45bc22f57433148e5f586843b3a7 (patch)
tree82a5b51a50bfe0fe8fdd9db008d88bcb29dac148 /utils/TableGen/Record.h
parent92fcdcac543653a62949fe9e5a7bd008500c1380 (diff)
downloadllvm-ffc0ab6037aa45bc22f57433148e5f586843b3a7.tar.gz
llvm-ffc0ab6037aa45bc22f57433148e5f586843b3a7.tar.bz2
llvm-ffc0ab6037aa45bc22f57433148e5f586843b3a7.tar.xz
Revert 73074 and 73099 because Windows doesn't have POSIX
regular expressions. We will add an OpenBSD implementation and re-apply ASAP. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73138 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/Record.h')
-rw-r--r--utils/TableGen/Record.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h
index d8e4fb34b6..ac06cae809 100644
--- a/utils/TableGen/Record.h
+++ b/utils/TableGen/Record.h
@@ -841,7 +841,7 @@ public:
///
class BinOpInit : public OpInit {
public:
- enum BinaryOp { SHL, SRA, SRL, STRCONCAT, CONCAT, NAMECONCAT, REGMATCH };
+ enum BinaryOp { SHL, SRA, SRL, STRCONCAT, CONCAT, NAMECONCAT };
private:
BinaryOp Opc;
Init *LHS, *RHS;
@@ -885,7 +885,7 @@ public:
///
class TernOpInit : public OpInit {
public:
- enum TernaryOp { SUBST, FOREACH, IF, PATSUBST };
+ enum TernaryOp { SUBST, FOREACH, IF };
private:
TernaryOp Opc;
Init *LHS, *MHS, *RHS;