summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-27 08:03:18 +0000
committerChris Lattner <sabre@nondot.org>2004-07-27 08:03:18 +0000
commit036d2b0c4dc9f278cdc78f6789a046540f8c6799 (patch)
treeed1ff479204109de2df49c16e5eafbb3688df4f9 /llvm/lib
parentd138437ffc1d942e1e796d3123880f8d2c148451 (diff)
downloadbcm5719-llvm-036d2b0c4dc9f278cdc78f6789a046540f8c6799.tar.gz
bcm5719-llvm-036d2b0c4dc9f278cdc78f6789a046540f8c6799.zip
nuke pointless -debug output
llvm-svn: 15267
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Analysis/IPA/GlobalsModRef.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/IPA/GlobalsModRef.cpp b/llvm/lib/Analysis/IPA/GlobalsModRef.cpp
index 15d76bf837f..219fdbf649b 100644
--- a/llvm/lib/Analysis/IPA/GlobalsModRef.cpp
+++ b/llvm/lib/Analysis/IPA/GlobalsModRef.cpp
@@ -14,7 +14,6 @@
//
//===----------------------------------------------------------------------===//
-#define DEBUG_TYPE "globalsmodref-aa"
#include "llvm/Analysis/Passes.h"
#include "llvm/Module.h"
#include "llvm/Pass.h"
@@ -24,7 +23,6 @@
#include "llvm/Analysis/CallGraph.h"
#include "llvm/Support/InstIterator.h"
#include "Support/CommandLine.h"
-#include "Support/Debug.h"
#include "Support/Statistic.h"
#include "Support/SCCIterator.h"
#include <set>
@@ -229,8 +227,6 @@ bool GlobalsModRef::AnalyzeUsesOfGlobal(Value *V,
/// graph to all callers and compute the mod/ref info for all memory for each
/// function.
void GlobalsModRef::AnalyzeCallGraph(CallGraph &CG, Module &M) {
- DEBUG(std::cerr << "GlobalsModRef: Analyze Call Graph\n");
-
// We do a bottom-up SCC traversal of the call graph. In other words, we
// visit all callees before callers (leaf-first).
for (scc_iterator<CallGraph*> I = scc_begin(&CG), E = scc_end(&CG); I!=E; ++I)
OpenPOWER on IntegriCloud