OSDN Git Service

Fix namespace polution.
authorDan Gohman <gohman@apple.com>
Thu, 15 Apr 2010 16:23:27 +0000 (16:23 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 15 Apr 2010 16:23:27 +0000 (16:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101375 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Pass.cpp

index 6b941f3..987712a 100644 (file)
@@ -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 {