[lld] r261928 - [ELF][MIPS] Remove redundant namespace qualifier. NFC
Simon Atanasyan via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 25 13:09:06 PST 2016
Author: atanasyan
Date: Thu Feb 25 15:09:05 2016
New Revision: 261928
URL: http://llvm.org/viewvc/llvm-project?rev=261928&view=rev
Log:
[ELF][MIPS] Remove redundant namespace qualifier. NFC
Modified:
lld/trunk/ELF/OutputSections.cpp
Modified: lld/trunk/ELF/OutputSections.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/OutputSections.cpp?rev=261928&r1=261927&r2=261928&view=diff
==============================================================================
--- lld/trunk/ELF/OutputSections.cpp (original)
+++ lld/trunk/ELF/OutputSections.cpp Thu Feb 25 15:09:05 2016
@@ -1517,7 +1517,7 @@ void SymbolTableSection<ELFT>::writeGlob
// https://sourceware.org/ml/binutils/2008-07/txt00000.txt
if (Config->EMachine == EM_MIPS && Body->isInPlt() &&
Body->NeedsCopyOrPltAddr)
- ESym->st_other |= ELF::STO_MIPS_PLT;
+ ESym->st_other |= STO_MIPS_PLT;
++ESym;
}
}
More information about the llvm-commits
mailing list