Remove debugging code accidentally checked in.
authorChris Lattner <sabre@nondot.org>
Wed, 21 Aug 2002 22:49:31 +0000 (22:49 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 21 Aug 2002 22:49:31 +0000 (22:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3430 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Pass.cpp

index 3d09d9d7e1c8b1d78724f00ab8ccf193db48439f..d0433c740b87141fc44c402be3722209bf168e30 100644 (file)
@@ -437,8 +437,6 @@ RegisterAGBase::RegisterAGBase(const std::type_info &Interface,
                                const std::type_info *Pass, bool isDefault)
   : ImplementationInfo(0), isDefaultImplementation(isDefault) {
 
-  std::cerr << "Registering interface: " << Interface.name() << "\n";
-
   InterfaceInfo = const_cast<PassInfo*>(Pass::lookupPassInfo(Interface));
   if (InterfaceInfo == 0) {   // First reference to Interface, add it now.
     InterfaceInfo =   // Create the new PassInfo for the interface...
@@ -450,8 +448,6 @@ RegisterAGBase::RegisterAGBase(const std::type_info &Interface,
          "Trying to join an analysis group that is a normal pass!");
 
   if (Pass) {
-  std::cerr << "Registering interface impl: " << Pass->name() << "\n";
-
     ImplementationInfo = Pass::lookupPassInfo(*Pass);
     assert(ImplementationInfo &&
            "Must register pass before adding to AnalysisGroup!");