[mips] Remove unused private field.

llvm-svn: 204919
This commit is contained in:
Matheus Almeida 2014-03-27 12:02:48 +00:00
parent 61218ba798
commit a805e85cb2
1 changed files with 1 additions and 2 deletions

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() {}
};