From cb9570eb22a431bd6ab84f62699acb89a9cb4fcf Mon Sep 17 00:00:00 2001 From: Martin Storsjo Date: Tue, 18 Sep 2018 07:21:55 +0000 Subject: [PATCH] [COFF] Fix a block with incorrect indentation. NFC. llvm-svn: 342446 --- lld/COFF/SymbolTable.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lld/COFF/SymbolTable.cpp b/lld/COFF/SymbolTable.cpp index a64267f..b27bc3d 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(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; -- 2.7.4