From bea9698b0e120ad4309ffe0ff3a59987a5eb9c4e Mon Sep 17 00:00:00 2001 From: Simon Atanasyan Date: Thu, 25 Feb 2016 21:09:05 +0000 Subject: [PATCH] [ELF][MIPS] Remove redundant namespace qualifier. NFC llvm-svn: 261928 --- lld/ELF/OutputSections.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/OutputSections.cpp b/lld/ELF/OutputSections.cpp index 4027c55..384f02a 100644 --- a/lld/ELF/OutputSections.cpp +++ b/lld/ELF/OutputSections.cpp @@ -1517,7 +1517,7 @@ void SymbolTableSection::writeGlobalSymbols(uint8_t *Buf) { // 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; } } -- 2.7.4