forked from OSchip/llvm-project
MC: Fix some stray hunks I didn't intend to commit.
llvm-svn: 107428
This commit is contained in:
parent
a2b1f8b5cd
commit
0e980755d3
|
@ -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