diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 11:28:26 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 11:28:26 +0000 |
commit | 87ab838945609a74bd4757a87dbd2718ed2061ae (patch) | |
tree | b8f73b39dcaff25cbfaf503f47ff2a892240cbe1 /tools | |
parent | 05d33ee7e7c61f156d1143ec461309798d9b268b (diff) | |
download | external_llvm-87ab838945609a74bd4757a87dbd2718ed2061ae.zip external_llvm-87ab838945609a74bd4757a87dbd2718ed2061ae.tar.gz external_llvm-87ab838945609a74bd4757a87dbd2718ed2061ae.tar.bz2 |
Get rid of hash_map in llvmc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc/Configuration.cpp | 3 | ||||
-rw-r--r-- | tools/llvmc/Configuration.h | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/tools/llvmc/Configuration.cpp b/tools/llvmc/Configuration.cpp index 8d48d4d..1aa047d 100644 --- a/tools/llvmc/Configuration.cpp +++ b/tools/llvmc/Configuration.cpp @@ -609,7 +609,6 @@ LLVMC_ConfigDataProvider::~LLVMC_ConfigDataProvider() ++cIt; delete cd; } - Configurations.clear(); } CompilerDriver::ConfigData* @@ -627,7 +626,7 @@ LLVMC_ConfigDataProvider::ProvideConfigData(const std::string& filetype) { result = ReadConfigData(filetype); // If we got one, cache it if (result != 0) - Configurations.insert(std::make_pair(filetype,result)); + Configurations[filetype] = result; } return result; // Might return 0 } diff --git a/tools/llvmc/Configuration.h b/tools/llvmc/Configuration.h index 12d0a95..410e9af 100644 --- a/tools/llvmc/Configuration.h +++ b/tools/llvmc/Configuration.h @@ -15,8 +15,8 @@ #ifndef LLVM_TOOLS_LLVMC_CONFIGDATA_H #define LLVM_TOOLS_LLVMC_CONFIGDATA_H +#include "llvm/ADT/StringMap.h" #include "CompilerDriver.h" -#include <llvm/ADT/hash_map> namespace llvm { /// This class provides the high level interface to the LLVM Compiler Driver. @@ -52,7 +52,7 @@ namespace llvm { /// @{ private: /// @brief This type is used internally to hold the configuration data. - typedef hash_map<std::string,CompilerDriver::ConfigData*> ConfigDataMap; + typedef StringMap<CompilerDriver::ConfigData*> ConfigDataMap; ConfigDataMap Configurations; ///< The cache of configurations sys::Path configDir; /// @} |