[mips] Remove unused private field.
authorMatheus Almeida <matheus.almeida@imgtec.com>
Thu, 27 Mar 2014 12:02:48 +0000 (12:02 +0000)
committerMatheus Almeida <matheus.almeida@imgtec.com>
Thu, 27 Mar 2014 12:02:48 +0000 (12:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204919 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h

index aea9440ee7a47d2c7da06150e1448c6b3f15ad30..641f8cf7af2511c0ee42057ea82cd678468e640b 100644 (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() {}
 };