stop using reserved identifiers.

llvm-svn: 95630
This commit is contained in:
Chris Lattner 2010-02-09 00:40:07 +00:00
parent 92354b6b55
commit 928480ec18
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ private:
/// in the directive name and the location of the directive keyword. /// in the directive name and the location of the directive keyword.
StringMap<bool(AsmParser::*)(StringRef, SMLoc)> DirectiveMap; StringMap<bool(AsmParser::*)(StringRef, SMLoc)> DirectiveMap;
public: public:
AsmParser(SourceMgr &_SM, MCContext &_Ctx, MCStreamer &_Out, AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
const MCAsmInfo &_MAI); const MCAsmInfo &MAI);
~AsmParser(); ~AsmParser();
bool Run(); bool Run();