summaryrefslogtreecommitdiff
path: root/utils/TableGen/TGLexer.cpp
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/TGLexer.cpp
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/TGLexer.cpp')
-rw-r--r--utils/TableGen/TGLexer.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/utils/TableGen/TGLexer.cpp b/utils/TableGen/TGLexer.cpp
index 930d9dba5b..758d499a8b 100644
--- a/utils/TableGen/TGLexer.cpp
+++ b/utils/TableGen/TGLexer.cpp
@@ -447,9 +447,7 @@ tgtok::TokKind TGLexer::LexExclaim() {
if (Len == 3 && !memcmp(Start, "shl", 3)) return tgtok::XSHL;
if (Len == 9 && !memcmp(Start, "strconcat", 9)) return tgtok::XStrConcat;
if (Len == 10 && !memcmp(Start, "nameconcat", 10)) return tgtok::XNameConcat;
- if (Len == 8 && !memcmp(Start, "regmatch", 8)) return tgtok::XRegMatch;
if (Len == 5 && !memcmp(Start, "subst", 5)) return tgtok::XSubst;
- if (Len == 8 && !memcmp(Start, "patsubst", 8)) return tgtok::XPatSubst;
if (Len == 7 && !memcmp(Start, "foreach", 7)) return tgtok::XForEach;
if (Len == 4 && !memcmp(Start, "cast", 4)) return tgtok::XCast;
if (Len == 3 && !memcmp(Start, "car", 3)) return tgtok::XCar;