[NFC] Small indentation fix in lld/ELF/Relocations.cpp

This commit is contained in:
Shivam Gupta 2023-01-22 18:40:58 +05:30
parent b34de68a1a
commit e8e0e5f3ee

View File

@ -1021,10 +1021,10 @@ void RelocationScanner::processAux(RelExpr expr, RelType type, uint64_t offset,
// R_HEX_GD_PLT_B22_PCREL (call a@GDPLT) is transformed into
// call __tls_get_addr even if the symbol is non-preemptible.
if (!(config->emachine == EM_HEXAGON &&
(type == R_HEX_GD_PLT_B22_PCREL ||
type == R_HEX_GD_PLT_B22_PCREL_X ||
type == R_HEX_GD_PLT_B32_PCREL_X)))
expr = fromPlt(expr);
(type == R_HEX_GD_PLT_B22_PCREL ||
type == R_HEX_GD_PLT_B22_PCREL_X ||
type == R_HEX_GD_PLT_B32_PCREL_X)))
expr = fromPlt(expr);
} else if (!isAbsoluteValue(sym)) {
expr =
target->adjustGotPcExpr(type, addend, sec->content().data() + offset);