diff options
| author | Martin Storsjo <martin@martin.st> | 2018-09-18 07:21:55 +0000 |
|---|---|---|
| committer | Martin Storsjo <martin@martin.st> | 2018-09-18 07:21:55 +0000 |
| commit | cb9570eb22a431bd6ab84f62699acb89a9cb4fcf (patch) | |
| tree | 38b4f0c8f22c5d48d8d7c7cfb7365b339c5b2b90 | |
| parent | 4f361612d183eeff2237bb097752fcbcb2cdb4b4 (diff) | |
| download | bcm5719-llvm-cb9570eb22a431bd6ab84f62699acb89a9cb4fcf.tar.gz bcm5719-llvm-cb9570eb22a431bd6ab84f62699acb89a9cb4fcf.zip | |
[COFF] Fix a block with incorrect indentation. NFC.
llvm-svn: 342446
| -rw-r--r-- | lld/COFF/SymbolTable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/COFF/SymbolTable.cpp b/lld/COFF/SymbolTable.cpp index a64267ffb56..b27bc3d5340 100644 --- a/lld/COFF/SymbolTable.cpp +++ b/lld/COFF/SymbolTable.cpp @@ -179,9 +179,9 @@ bool SymbolTable::handleMinGWAutomaticImport(Symbol *Sym, StringRef Name) { if (Refptr && Refptr->getChunk()->getSize() == PtrSize) { SectionChunk *SC = dyn_cast_or_null<SectionChunk>(Refptr->getChunk()); if (SC && SC->Relocs.size() == 1 && *SC->symbols().begin() == Sym) { - log("Replacing .refptr." + Name + " with " + Imp->getName()); - Refptr->getChunk()->Live = false; - Refptr->replaceKeepingName(Imp, sizeof(DefinedImportData)); + log("Replacing .refptr." + Name + " with " + Imp->getName()); + Refptr->getChunk()->Live = false; + Refptr->replaceKeepingName(Imp, sizeof(DefinedImportData)); } } return true; |

