From: Dan Gohman Date: Thu, 15 Apr 2010 16:23:27 +0000 (+0000) Subject: Fix namespace polution. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=098406b42ca7cd05745215020ae5ed82194b7c0a;p=oota-llvm.git Fix namespace polution. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101375 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index 6b941f34996..987712a2dc0 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -318,6 +318,8 @@ static PassRegistrar *getPassRegistrar() { return PassRegistrarObj; } +namespace { + // FIXME: We use ManagedCleanup to erase the pass registrar on shutdown. // Unfortunately, passes are registered with static ctors, and having // llvm_shutdown clear this map prevents successful ressurection after @@ -331,6 +333,8 @@ void cleanupPassRegistrar(void*) { } ManagedCleanup<&cleanupPassRegistrar> registrarCleanup; +} + // getPassInfo - Return the PassInfo data structure that corresponds to this // pass... const PassInfo *Pass::getPassInfo() const {