Index: clang/lib/Driver/ToolChains/Arch/X86.cpp =================================================================== --- clang/lib/Driver/ToolChains/Arch/X86.cpp +++ clang/lib/Driver/ToolChains/Arch/X86.cpp @@ -59,9 +59,8 @@ } StringRef CPU = ArchMap.lookup(A->getValue()); if (CPU.empty()) { - std::vector ValidArchs; - for (StringRef Key : ArchMap.keys()) - ValidArchs.push_back(Key); + std::vector ValidArchs{ArchMap.keys().begin(), + ArchMap.keys().end()}; sort(ValidArchs); D.Diag(diag::warn_drv_invalid_arch_name_with_suggestion) << A->getValue() << (Triple.getArch() == llvm::Triple::x86) Index: llvm/include/llvm/ADT/StringMap.h =================================================================== --- llvm/include/llvm/ADT/StringMap.h +++ llvm/include/llvm/ADT/StringMap.h @@ -478,13 +478,9 @@ explicit StringMapKeyIterator(StringMapConstIterator Iter) : base(std::move(Iter)) {} - StringRef &operator*() { - Key = this->wrapped()->getKey(); - return Key; + StringRef operator*() const { + return this->wrapped()->getKey(); } - -private: - StringRef Key; }; } // end namespace llvm Index: llvm/unittests/ADT/StringMapTest.cpp =================================================================== --- llvm/unittests/ADT/StringMapTest.cpp +++ llvm/unittests/ADT/StringMapTest.cpp @@ -308,7 +308,21 @@ EXPECT_EQ(0, try1.first->second.copy); } -TEST_F(StringMapTest, IterMapKeys) { +TEST_F(StringMapTest, IterMapKeysVector) { + StringMap Map; + Map["A"] = 1; + Map["B"] = 2; + Map["C"] = 3; + Map["D"] = 3; + + std::vector Keys{Map.keys().begin(), Map.keys().end()}; + llvm::sort(Keys); + + std::vector Expected{{"A", "B", "C", "D"}}; + EXPECT_EQ(Expected, Keys); +} + +TEST_F(StringMapTest, IterMapKeysSmallVector) { StringMap Map; Map["A"] = 1; Map["B"] = 2;