mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Remove dummy method implementations.
These are pure virtual in the base class, so the compiler checks that they are implemented. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231673 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
18afdb3210
commit
a32448cb94
@ -687,19 +687,3 @@ void EHStreamer::emitTypeInfos(unsigned TTypeEncoding) {
|
|||||||
Asm->EmitULEB128(TypeID);
|
Asm->EmitULEB128(TypeID);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Emit all exception information that should come after the content.
|
|
||||||
void EHStreamer::endModule() {
|
|
||||||
llvm_unreachable("Should be implemented");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Gather pre-function exception information. Assumes it's being emitted
|
|
||||||
/// immediately after the function entry point.
|
|
||||||
void EHStreamer::beginFunction(const MachineFunction *MF) {
|
|
||||||
llvm_unreachable("Should be implemented");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Gather and emit post-function exception information.
|
|
||||||
void EHStreamer::endFunction(const MachineFunction *) {
|
|
||||||
llvm_unreachable("Should be implemented");
|
|
||||||
}
|
|
||||||
|
@ -125,16 +125,6 @@ public:
|
|||||||
EHStreamer(AsmPrinter *A);
|
EHStreamer(AsmPrinter *A);
|
||||||
virtual ~EHStreamer();
|
virtual ~EHStreamer();
|
||||||
|
|
||||||
/// Emit all exception information that should come after the content.
|
|
||||||
void endModule() override;
|
|
||||||
|
|
||||||
/// Gather pre-function exception information. Assumes being emitted
|
|
||||||
/// immediately after the function entry point.
|
|
||||||
void beginFunction(const MachineFunction *MF) override;
|
|
||||||
|
|
||||||
/// Gather and emit post-function exception information.
|
|
||||||
void endFunction(const MachineFunction *) override;
|
|
||||||
|
|
||||||
// Unused.
|
// Unused.
|
||||||
void setSymbolSize(const MCSymbol *Sym, uint64_t Size) override {}
|
void setSymbolSize(const MCSymbol *Sym, uint64_t Size) override {}
|
||||||
void beginInstruction(const MachineInstr *MI) override {}
|
void beginInstruction(const MachineInstr *MI) override {}
|
||||||
|
Loading…
Reference in New Issue
Block a user