diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-04 19:24:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-04 19:24:48 +0000 |
commit | 22c3982cd390102d29bad01cc603bb66c475b05a (patch) | |
tree | 7022eaf62be8b877fea1dc1815a83ee919aeaaab /lib/VMCore/Pass.cpp | |
parent | 61f64f9b6a6262a0ee47aa73b23aa5315d5d64b8 (diff) |
Make the release build compile
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2107 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Pass.cpp')
-rw-r--r-- | lib/VMCore/Pass.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index b607fe4b80..9596f5234e 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -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 //===----------------------------------------------------------------------===// |