Skip to content

Commit e4c360a

Browse files
committed
[MC][ELF] Drop MCSymbol::isExternal call sites
ELF uses symbol bindings and MCSymbol::isExternal is not really useful. The function is no longer used in ELF code now.
1 parent 553d4d0 commit e4c360a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/MC/ELFObjectWriter.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ void ELFWriter::writeHeader(const MCAssembler &Asm) {
464464

465465
uint64_t ELFWriter::SymbolValue(const MCSymbol &Sym,
466466
const MCAsmLayout &Layout) {
467-
if (Sym.isCommon() && (Sym.isTargetCommon() || Sym.isExternal()))
467+
if (Sym.isCommon())
468468
return Sym.getCommonAlignment();
469469

470470
uint64_t Res;
@@ -1278,7 +1278,6 @@ void ELFObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
12781278

12791279
// Aliases defined with .symvar copy the binding from the symbol they alias.
12801280
// This is the first place we are able to copy this information.
1281-
Alias->setExternal(Symbol.isExternal());
12821281
Alias->setBinding(Symbol.getBinding());
12831282
Alias->setVisibility(Symbol.getVisibility());
12841283
Alias->setOther(Symbol.getOther());

0 commit comments

Comments
 (0)