forked from OSchip/llvm-project
Remove unused private fields to fix the clang -Werror build.
llvm-svn: 291201
This commit is contained in:
parent
e9c678cfca
commit
1e58b463d9
|
@ -39,12 +39,8 @@ namespace llvm {
|
|||
namespace {
|
||||
|
||||
class LanaiMCCodeEmitter : public MCCodeEmitter {
|
||||
const MCInstrInfo &InstrInfo;
|
||||
MCContext &Context;
|
||||
|
||||
public:
|
||||
LanaiMCCodeEmitter(const MCInstrInfo &MCII, MCContext &C)
|
||||
: InstrInfo(MCII), Context(C) {}
|
||||
LanaiMCCodeEmitter(const MCInstrInfo &MCII, MCContext &C) {}
|
||||
LanaiMCCodeEmitter(const LanaiMCCodeEmitter &) = delete;
|
||||
void operator=(const LanaiMCCodeEmitter &) = delete;
|
||||
~LanaiMCCodeEmitter() override = default;
|
||||
|
|
Loading…
Reference in New Issue