We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 133e5ae commit c404110Copy full SHA for c404110
llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
@@ -50,9 +50,9 @@ class RuntimeDyldCOFF : public RuntimeDyldImpl {
50
51
static constexpr StringRef getImportSymbolPrefix() { return "__imp_"; }
52
53
- bool relocationNeedsDLLImportStub(const RelocationRef &R) const;
+ bool relocationNeedsDLLImportStub(const RelocationRef &R) const override;
54
55
- unsigned sizeAfterAddingDLLImportStub(unsigned Size) const {
+ unsigned sizeAfterAddingDLLImportStub(unsigned Size) const override {
56
return alignTo(Size, PointerSize) + PointerSize;
57
}
58
0 commit comments