git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134922
91177308-0d34-0410-b5e6-
96231b3b80d8
void operator=(const ARMMCCodeEmitter &); // DO NOT IMPLEMENT
const MCInstrInfo &MCII;
const MCSubtargetInfo &STI;
- MCContext &Ctx;
public:
ARMMCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
MCContext &ctx)
- : MCII(mcii), STI(sti), Ctx(ctx) {
+ : MCII(mcii), STI(sti) {
}
~ARMMCCodeEmitter() {}
MBlazeMCCodeEmitter(const MBlazeMCCodeEmitter &); // DO NOT IMPLEMENT
void operator=(const MBlazeMCCodeEmitter &); // DO NOT IMPLEMENT
const MCInstrInfo &MCII;
- MCContext &Ctx;
public:
MBlazeMCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
MCContext &ctx)
- : MCII(mcii), Ctx(ctx) {
+ : MCII(mcii) {
}
~MBlazeMCCodeEmitter() {}
class PPCMCCodeEmitter : public MCCodeEmitter {
PPCMCCodeEmitter(const PPCMCCodeEmitter &); // DO NOT IMPLEMENT
void operator=(const PPCMCCodeEmitter &); // DO NOT IMPLEMENT
- MCContext &Ctx;
public:
PPCMCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
- MCContext &ctx)
- : Ctx(ctx) {
+ MCContext &ctx) {
}
~PPCMCCodeEmitter() {}