[ELF][MIPS] Remove redundant namespace qualifier. NFC
authorSimon Atanasyan <simon@atanasyan.com>
Thu, 25 Feb 2016 21:09:05 +0000 (21:09 +0000)
committerSimon Atanasyan <simon@atanasyan.com>
Thu, 25 Feb 2016 21:09:05 +0000 (21:09 +0000)
llvm-svn: 261928

lld/ELF/OutputSections.cpp

index 4027c55..384f02a 100644 (file)
@@ -1517,7 +1517,7 @@ void SymbolTableSection<ELFT>::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;
   }
 }