Remove unused private fields to fix the clang -Werror build.

llvm-svn: 291201
This commit is contained in:
David Blaikie 2017-01-06 00:48:24 +00:00
parent e9c678cfca
commit 1e58b463d9
1 changed files with 1 additions and 5 deletions

View File

@ -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;