From: George Rimar Date: Wed, 1 Aug 2018 08:10:50 +0000 (+0000) Subject: [LLD][ELF] - Removed excessive llvm:: prefix. NFC. X-Git-Tag: llvmorg-7.0.0-rc1~63 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a4211551f1f1fd17f00c917dc85ba065b5a121dd;p=platform%2Fupstream%2Fllvm.git [LLD][ELF] - Removed excessive llvm:: prefix. NFC. llvm-svn: 338497 --- diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index c2c0acd..a4359c4 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -842,8 +842,7 @@ void InputSectionBase::relocateAlloc(uint8_t *Buf, uint8_t *BufEnd) { // For each function-defining prologue, find any calls to __morestack, // and replace them with calls to __morestack_non_split. static void switchMorestackCallsToMorestackNonSplit( - llvm::DenseSet& Prologues, - std::vector& MorestackCalls) { + DenseSet &Prologues, std::vector &MorestackCalls) { // If the target adjusted a function's prologue, all calls to // __morestack inside that function should be switched to @@ -873,9 +872,8 @@ static void switchMorestackCallsToMorestackNonSplit( } } -static bool -enclosingPrologueAdjusted(uint64_t Offset, - const llvm::DenseSet &Prologues) { +static bool enclosingPrologueAdjusted(uint64_t Offset, + const DenseSet &Prologues) { for (Defined *F : Prologues) if (F->Value <= Offset && Offset < F->Value + F->Size) return true; @@ -891,7 +889,7 @@ void InputSectionBase::adjustSplitStackFunctionPrologues(uint8_t *Buf, uint8_t *End) { if (!getFile()->SplitStack) return; - llvm::DenseSet AdjustedPrologues; + DenseSet AdjustedPrologues; std::vector MorestackCalls; for (Relocation &Rel : Relocations) {