Skip to content

Commit

Permalink
Remove unused class variables.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255939 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
echristo committed Dec 17, 2015
1 parent 449ad4c commit a075593
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,12 @@ using namespace llvm;

namespace {
class WebAssemblyMCCodeEmitter final : public MCCodeEmitter {
const MCInstrInfo &MCII;
const MCRegisterInfo &MRI;
const MCContext &Ctx;

public:
WebAssemblyMCCodeEmitter(const MCInstrInfo &mcii, const MCRegisterInfo &mri,
MCContext &ctx)
: MCII(mcii), MRI(mri), Ctx(ctx) {}
WebAssemblyMCCodeEmitter(const MCInstrInfo &, const MCRegisterInfo &mri,
MCContext &)
: MRI(mri) {}

~WebAssemblyMCCodeEmitter() override {}

Expand Down

0 comments on commit a075593

Please sign in to comment.