From 6a59f5ade8e13e323affe09d5a22df7d146ae259 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Mon, 7 Jan 2013 05:09:33 +0000 Subject: 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 --- lib/TableGen/TGParser.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/TableGen') diff --git a/lib/TableGen/TGParser.cpp b/lib/TableGen/TGParser.cpp index e5875ad795..17f0abc974 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); } -- cgit v1.2.3