1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

[mips] Remove unused private field.

llvm-svn: 204919
This commit is contained in:
Matheus Almeida 2014-03-27 12:02:48 +00:00
parent 58958a3c4f
commit 30ce2256b1

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