Make the release build compile
authorChris Lattner <sabre@nondot.org>
Thu, 4 Apr 2002 19:24:48 +0000 (19:24 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 4 Apr 2002 19:24:48 +0000 (19:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2107 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Pass.cpp

index b607fe4b804c8f99e0e3eb0a134933d8c88317f6..9596f5234e26594ed68d870b3383b4b6fbb9b2c4 100644 (file)
@@ -27,7 +27,6 @@ void AnalysisResolver::setAnalysisResolver(Pass *P, AnalysisResolver *AR) {
 // debugging on, a command line option (--debug-pass) is enabled that causes the
 // pass name to be printed before it executes.
 //
-#ifndef NDEBUG
 #include "Support/CommandLine.h"
 #include <typeinfo>
 #include <iostream>
@@ -88,7 +87,6 @@ void PMDebug::PrintAnalysisSetInfo(unsigned Depth, const char *Msg,
 void Pass::dumpPassStructure(unsigned Offset = 0) {
   std::cerr << std::string(Offset*2, ' ') << typeid(*this).name() << "\n";
 }
-#endif
 
 
 //===----------------------------------------------------------------------===//