From: Craig Topper Date: Mon, 7 Jan 2013 05:09:33 +0000 (+0000) Subject: Revert r171140. We don't actually need to support #NAME. Because NAME by itself is... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6a59f5ade8e13e323affe09d5a22df7d146ae259;p=oota-llvm.git Revert r171140. We don't actually need to support #NAME. Because NAME by itself is interpreted just fine. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171695 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/TableGen/TGParser.cpp b/lib/TableGen/TGParser.cpp index e5875ad7957..17f0abc9747 100644 --- a/lib/TableGen/TGParser.cpp +++ b/lib/TableGen/TGParser.cpp @@ -2406,11 +2406,7 @@ bool TGParser::ParseDefm(MultiClass *CurMultiClass) { Init *DefmPrefix = 0; - Lex.Lex(); // eat the defm. - - // Note that tgtok::paste is here to allow starting with #NAME. - if (Lex.getCode() == tgtok::Id || - Lex.getCode() == tgtok::paste) { + if (Lex.Lex() == tgtok::Id) { // eat the defm. DefmPrefix = ParseObjectName(CurMultiClass); }