[mips] Remove unused private field.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204919 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Matheus Almeida 2014-03-27 12:02:48 +00:00
parent ea28b322f8
commit 0d811741fb

View File

@ -25,12 +25,11 @@ class MCContext;
class MCSubtargetInfo;
class MipsELFStreamer : public MCELFStreamer {
const MCSubtargetInfo &STI;
public:
MipsELFStreamer(MCContext &Context, MCAsmBackend &MAB, raw_ostream &OS,
MCCodeEmitter *Emitter, const MCSubtargetInfo &STI)
: MCELFStreamer(Context, MAB, OS, Emitter), STI(STI) {}
: MCELFStreamer(Context, MAB, OS, Emitter) {}
virtual ~MipsELFStreamer() {}
};