summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-21 22:49:31 +0000
committerChris Lattner <sabre@nondot.org>2002-08-21 22:49:31 +0000
commit10d7b85d5e152dd665f627a2b974854ae72aac4a (patch)
treeba8b6fbbfa914097cbdcc1c23e09f75a24b01705 /llvm/lib
parent5b0af8164d49e39d7c09086d929fa29c21af5919 (diff)
downloadbcm5719-llvm-10d7b85d5e152dd665f627a2b974854ae72aac4a.tar.gz
bcm5719-llvm-10d7b85d5e152dd665f627a2b974854ae72aac4a.zip
Remove debugging code accidentally checked in.
llvm-svn: 3430
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/VMCore/Pass.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/VMCore/Pass.cpp b/llvm/lib/VMCore/Pass.cpp
index 3d09d9d7e1c..d0433c740b8 100644
--- a/llvm/lib/VMCore/Pass.cpp
+++ b/llvm/lib/VMCore/Pass.cpp
@@ -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!");
OpenPOWER on IntegriCloud