mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 21:53:12 +08:00
ELF: Rename relocNeedsCopy -> needsCopyRel
Just "copy" was a bit too ambiguous to say about copy relocations. llvm-svn: 255866
This commit is contained in:
@@ -245,7 +245,7 @@ void Writer<ELFT>::scanRelocs(
|
||||
if (auto *E = dyn_cast<SharedSymbol<ELFT>>(Body)) {
|
||||
if (E->NeedsCopy)
|
||||
continue;
|
||||
if (Target->relocNeedsCopy(Type, *Body))
|
||||
if (Target->needsCopyRel(Type, *Body))
|
||||
E->NeedsCopy = true;
|
||||
}
|
||||
NeedsPlt = Target->relocNeedsPlt(Type, *Body);
|
||||
|
||||
Reference in New Issue
Block a user