forked from OSchip/llvm-project
Fix the (clang -Werror) build by removing an unused member variable.
llvm-svn: 175607
This commit is contained in:
parent
c33fc4c004
commit
725fda1213
|
@ -35,13 +35,12 @@ class MipsMCCodeEmitter : public MCCodeEmitter {
|
|||
void operator=(const MipsMCCodeEmitter &) LLVM_DELETED_FUNCTION;
|
||||
const MCInstrInfo &MCII;
|
||||
MCContext &Ctx;
|
||||
const MCSubtargetInfo &STI;
|
||||
bool IsLittleEndian;
|
||||
|
||||
public:
|
||||
MipsMCCodeEmitter(const MCInstrInfo &mcii, MCContext &Ctx_,
|
||||
const MCSubtargetInfo &sti, bool IsLittle) :
|
||||
MCII(mcii), Ctx(Ctx_), STI (sti), IsLittleEndian(IsLittle) {}
|
||||
MCII(mcii), Ctx(Ctx_), IsLittleEndian(IsLittle) {}
|
||||
|
||||
~MipsMCCodeEmitter() {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue