mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
Fix the (clang -Werror) build by removing an unused member variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175607 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7ab6c76ad1
commit
5f64595355
@ -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
Block a user