[PATCH] D34964: [LLD] [COFF] Add initial support for some ARM64 relocations and import thunks
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 10 13:53:58 PDT 2017
ruiu added inline comments.
================
Comment at: COFF/Chunks.h:314
+ size_t getSize() const override { return sizeof(ImportThunkARM64); }
+ void getBaserels(std::vector<Baserel> *Res) override;
+ void writeTo(uint8_t *Buf) const override;
----------------
Then do not override this function. The base class provides a function that does nothing.
https://reviews.llvm.org/D34964
More information about the llvm-commits
mailing list