diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-23 18:17:34 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-23 18:17:34 +0000 |
commit | 5bf72e20eb49ddd2e977c860670a1e71dbfd89c0 (patch) | |
tree | 15bf09e9cdd6a22769ffcef383cab9c17b7013ca /llvm/lib/Support/StringPool.cpp | |
parent | 07b749230c6d6bbc4194038cfd9313a7fa494fe1 (diff) | |
download | bcm5719-llvm-5bf72e20eb49ddd2e977c860670a1e71dbfd89c0.tar.gz bcm5719-llvm-5bf72e20eb49ddd2e977c860670a1e71dbfd89c0.zip |
Convert StringMap to using StringRef for its APIs.
- Yay for '-'s and simplifications!
- I kept StringMap::GetOrCreateValue for compatibility purposes, this can
eventually go away. Likewise the StringMapEntry Create functions still follow
the old style.
- NIFC.
llvm-svn: 76888
Diffstat (limited to 'llvm/lib/Support/StringPool.cpp')
-rw-r--r-- | llvm/lib/Support/StringPool.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Support/StringPool.cpp b/llvm/lib/Support/StringPool.cpp index b9c1fd0465b..735472e26a5 100644 --- a/llvm/lib/Support/StringPool.cpp +++ b/llvm/lib/Support/StringPool.cpp @@ -13,6 +13,7 @@ #include "llvm/Support/StringPool.h" #include "llvm/Support/Streams.h" +#include "llvm/ADT/StringRef.h" using namespace llvm; @@ -22,12 +23,12 @@ StringPool::~StringPool() { assert(InternTable.empty() && "PooledStringPtr leaked!"); } -PooledStringPtr StringPool::intern(const char *Begin, const char *End) { - table_t::iterator I = InternTable.find(Begin, End); +PooledStringPtr StringPool::intern(const StringRef &Key) { + table_t::iterator I = InternTable.find(Key); if (I != InternTable.end()) return PooledStringPtr(&*I); - entry_t *S = entry_t::Create(Begin, End); + entry_t *S = entry_t::Create(Key.begin(), Key.end()); S->getValue().Pool = this; InternTable.insert(S); |