[llvm] Change 2 instances of std::sort to llvm::sort
authorMandeep Singh Grang <mgrang@codeaurora.org>
Mon, 16 Jul 2018 17:26:37 +0000 (17:26 +0000)
committerMandeep Singh Grang <mgrang@codeaurora.org>
Mon, 16 Jul 2018 17:26:37 +0000 (17:26 +0000)
llvm-svn: 337192

llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp

index af6fc11..fa43d13 100644 (file)
@@ -134,7 +134,7 @@ rescheduleLexographically(std::vector<MachineInstr *> instructions,
     StringInstrMap.push_back({(i == std::string::npos) ? S : S.substr(i), II});
   }
 
-  std::sort(StringInstrMap.begin(), StringInstrMap.end(),
+  llvm::sort(StringInstrMap.begin(), StringInstrMap.end(),
             [](const StringInstrPair &a, const StringInstrPair &b) -> bool {
               return (a.first < b.first);
             });
index 2f0f76b..58efc22 100644 (file)
@@ -144,7 +144,7 @@ void GSIHashStreamBuilder::finalizeBuckets(uint32_t RecordZeroOffset) {
     // can properly early-out when it detects the record won't be found.  The
     // algorithm used here corredsponds to the function
     // caseInsensitiveComparePchPchCchCch in the reference implementation.
-    std::sort(Bucket.begin(), Bucket.end(),
+    llvm::sort(Bucket.begin(), Bucket.end(),
               [](const std::pair<StringRef, PSHashRecord> &Left,
                  const std::pair<StringRef, PSHashRecord> &Right) {
                 return gsiRecordLess(Left.first, Right.first);