mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 15:19:33 +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;
|
||||
MCStreamer &Out;
|
||||
SourceMgr &SrcMgr;
|
||||
TargetAsmParser *GenericTargetParser;
|
||||
TargetAsmParser *TargetParser;
|
||||
|
||||
/// 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,
|
||||
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));
|
||||
|
||||
// Debugging directives.
|
||||
|
Loading…
Reference in New Issue
Block a user