From: Chris Lattner Date: Tue, 9 Feb 2010 00:40:07 +0000 (+0000) Subject: stop using reserved identifiers. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8a872d0215b04e13f0c63274d385ebc5ad9f167e;p=oota-llvm.git stop using reserved identifiers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95630 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCParser/AsmParser.h b/include/llvm/MC/MCParser/AsmParser.h index f82584c8fc0..829604c81f7 100644 --- a/include/llvm/MC/MCParser/AsmParser.h +++ b/include/llvm/MC/MCParser/AsmParser.h @@ -61,8 +61,8 @@ private: /// in the directive name and the location of the directive keyword. StringMap DirectiveMap; public: - AsmParser(SourceMgr &_SM, MCContext &_Ctx, MCStreamer &_Out, - const MCAsmInfo &_MAI); + AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out, + const MCAsmInfo &MAI); ~AsmParser(); bool Run();