From 8962feb9155db2b7d7ceabc53f0c57b4e3c889ea Mon Sep 17 00:00:00 2001 From: Shankar Easwaran Date: Thu, 14 Mar 2013 16:09:49 +0000 Subject: [lld] remove trailing whitespace llvm-svn: 177079 --- lld/lib/ReaderWriter/ELF/DynamicLibraryWriter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lld/lib/ReaderWriter/ELF/DynamicLibraryWriter.h') diff --git a/lld/lib/ReaderWriter/ELF/DynamicLibraryWriter.h b/lld/lib/ReaderWriter/ELF/DynamicLibraryWriter.h index ef84080b432..8169ba721e5 100644 --- a/lld/lib/ReaderWriter/ELF/DynamicLibraryWriter.h +++ b/lld/lib/ReaderWriter/ELF/DynamicLibraryWriter.h @@ -43,13 +43,13 @@ private: template void DynamicLibraryWriter::buildDynamicSymbolTable(const File &file) { // Add all the defined symbols to the dynamic symbol table - // we need hooks into the Atom to find out which atoms need - // to be exported + // we need hooks into the Atom to find out which atoms need + // to be exported for (auto sec : this->_layout->sections()) if (auto section = dyn_cast>(sec)) for (const auto &atom : section->atoms()) { const DefinedAtom *da = dyn_cast(atom->_atom); - if (da && (da->scope() != DefinedAtom::scopeTranslationUnit)) + if (da && (da->scope() != DefinedAtom::scopeTranslationUnit)) this->_dynamicSymbolTable->addSymbol(atom->_atom, section->ordinal(), atom->_virtualAddr, atom); } -- cgit v1.2.3