1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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 832eecc1c2
commit 6f0e4a8777

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;