diff options
Diffstat (limited to 'include/llvm/CodeGen/MachineModuleInfoImpls.h')
-rw-r--r-- | include/llvm/CodeGen/MachineModuleInfoImpls.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineModuleInfoImpls.h b/include/llvm/CodeGen/MachineModuleInfoImpls.h index 492c016fd6..44813cbdcd 100644 --- a/include/llvm/CodeGen/MachineModuleInfoImpls.h +++ b/include/llvm/CodeGen/MachineModuleInfoImpls.h @@ -38,18 +38,19 @@ namespace llvm { virtual void Anchor(); // Out of line virtual method. public: + MachineModuleInfoMachO(const MachineModuleInfo &) {} const MCSymbol *&getFnStubEntry(const MCSymbol *Sym) { assert(Sym && "Key cannot be null"); return FnStubs[Sym]; } - const MCSymbol *&getGVStubsEntry(const MCSymbol *Sym) { + const MCSymbol *&getGVStubEntry(const MCSymbol *Sym) { assert(Sym && "Key cannot be null"); return GVStubs[Sym]; } - const MCSymbol *&getHiddenGVStubsEntry(const MCSymbol *Sym) { + const MCSymbol *&getHiddenGVStubEntry(const MCSymbol *Sym) { assert(Sym && "Key cannot be null"); return HiddenGVStubs[Sym]; } |