Update some globals to use ManagedStatic.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86342 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames
2009-11-07 05:50:28 +00:00
parent bdea34807a
commit d6ef7fac1a
2 changed files with 62 additions and 21 deletions

View File

@ -16,8 +16,10 @@
using namespace llvm;
std::auto_ptr<IndexListEntry> IndexListEntry::emptyKeyEntry,
IndexListEntry::tombstoneKeyEntry;
// Yep - these are thread safe. See the header for details.
ManagedStatic<EmptyIndexListEntry> IndexListEntry::emptyKeyEntry;
ManagedStatic<TombstoneIndexListEntry> IndexListEntry::tombstoneKeyEntry;
char SlotIndexes::ID = 0;
static RegisterPass<SlotIndexes> X("slotindexes", "Slot index numbering");