mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 07:39:31 +00:00
MC: Fix some stray hunks I didn't intend to commit.
llvm-svn: 107428
This commit is contained in:
parent
37b4089fbf
commit
742376cfaa
@ -43,7 +43,6 @@ private:
|
|||||||
MCContext &Ctx;
|
MCContext &Ctx;
|
||||||
MCStreamer &Out;
|
MCStreamer &Out;
|
||||||
SourceMgr &SrcMgr;
|
SourceMgr &SrcMgr;
|
||||||
TargetAsmParser *GenericTargetParser;
|
|
||||||
TargetAsmParser *TargetParser;
|
TargetAsmParser *TargetParser;
|
||||||
|
|
||||||
/// This is the current buffer index we're lexing from as managed by the
|
/// This is the current buffer index we're lexing from as managed by the
|
||||||
|
@ -34,7 +34,8 @@ enum { DEFAULT_ADDRSPACE = 0 };
|
|||||||
|
|
||||||
AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
|
AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
|
||||||
MCStreamer &_Out, const MCAsmInfo &_MAI)
|
MCStreamer &_Out, const MCAsmInfo &_MAI)
|
||||||
: Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM), CurBuffer(0) {
|
: Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM), TargetParser(0),
|
||||||
|
CurBuffer(0) {
|
||||||
Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
|
Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
|
||||||
|
|
||||||
// Debugging directives.
|
// Debugging directives.
|
||||||
|
Loading…
Reference in New Issue
Block a user