mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Promoted the reference to the SourceMgr from AsmLexer
into AsmParser, in preparation for making AsmLexer independent of the SourceMgr git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94043 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
79036e421f
commit
10d33a4937
@ -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);
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user