Promoted the reference to the SourceMgr from AsmLexer

into AsmParser, in preparation for making AsmLexer
independent of the SourceMgr

llvm-svn: 94043
This commit is contained in:
Sean Callanan 2010-01-20 22:45:23 +00:00
parent 802f12f719
commit 1a0eeb6e06
2 changed files with 4 additions and 2 deletions

View File

@ -40,7 +40,7 @@ typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy;
AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx, MCStreamer &_Out,
const MCAsmInfo &_MAI)
: Lexer(_SM, _MAI), Ctx(_Ctx), Out(_Out), TargetParser(0),
: Lexer(_SM, _MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM), TargetParser(0),
SectionUniquingMap(0) {
// Debugging directives.
AddDirectiveHandler(".file", &AsmParser::ParseDirectiveFile);

View File

@ -32,14 +32,16 @@ class MCInst;
class MCStreamer;
class MCAsmInfo;
class MCValue;
class SourceMgr;
class TargetAsmParser;
class Twine;
class AsmParser : public MCAsmParser {
private:
private:
AsmLexer Lexer;
MCContext &Ctx;
MCStreamer &Out;
SourceMgr &SrcMgr;
TargetAsmParser *TargetParser;
AsmCond TheCondState;