[PATCH] D17265: [lld] [ELF/AArch64] Fix R_AARCH64_ABS64 in Shared mode
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 18 12:46:31 PST 2016
ruiu added inline comments.
================
Comment at: ELF/Target.h:57
@@ -56,2 +56,3 @@
virtual bool needsDynRelative(unsigned Type) const { return false; }
+ virtual uint64_t getDynRelativeAddend(unsigned Type, uint64_t Addend) const;
virtual bool needsGot(uint32_t Type, SymbolBody &S) const;
----------------
You defined this function but this function is an identity function in all subclasses. If you no longer need it, please remove.
http://reviews.llvm.org/D17265
More information about the llvm-commits
mailing list