diff options
author | Chris Lattner <sabre@nondot.org> | 2010-10-06 00:19:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-10-06 00:19:21 +0000 |
commit | 940263363706337c3061d2598087c77bed5c56f1 (patch) | |
tree | 98e53ce473d93fe392051baf2c0b1359f713be19 /llvm/utils/TableGen/TGLexer.cpp | |
parent | 2ab40fecf6fd8eb44ccd4d8b2ae7e849a008343b (diff) | |
download | bcm5719-llvm-940263363706337c3061d2598087c77bed5c56f1.tar.gz bcm5719-llvm-940263363706337c3061d2598087c77bed5c56f1.zip |
remove the !nameconcat tblgen feature. It "shorthand" and only used in 4 places
where !cast is just as short.
llvm-svn: 115722
Diffstat (limited to 'llvm/utils/TableGen/TGLexer.cpp')
-rw-r--r-- | llvm/utils/TableGen/TGLexer.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/TGLexer.cpp b/llvm/utils/TableGen/TGLexer.cpp index 4ea2e9118ef..12fa39f0092 100644 --- a/llvm/utils/TableGen/TGLexer.cpp +++ b/llvm/utils/TableGen/TGLexer.cpp @@ -427,7 +427,6 @@ tgtok::TokKind TGLexer::LexExclaim() { if (Len == 3 && !memcmp(Start, "shl", 3)) return tgtok::XSHL; if (Len == 2 && !memcmp(Start, "eq", 2)) return tgtok::XEq; if (Len == 9 && !memcmp(Start, "strconcat", 9)) return tgtok::XStrConcat; - if (Len == 10 && !memcmp(Start, "nameconcat", 10)) return tgtok::XNameConcat; if (Len == 5 && !memcmp(Start, "subst", 5)) return tgtok::XSubst; if (Len == 7 && !memcmp(Start, "foreach", 7)) return tgtok::XForEach; if (Len == 4 && !memcmp(Start, "cast", 4)) return tgtok::XCast; |