[llvm-commits] CVS: llvm/lib/Analysis/IPA/GlobalsModRef.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Jul 27 01:03:28 PDT 2004
Changes in directory llvm/lib/Analysis/IPA:
GlobalsModRef.cpp updated: 1.4 -> 1.5
---
Log message:
nuke pointless -debug output
---
Diffs of the changes: (+0 -4)
Index: llvm/lib/Analysis/IPA/GlobalsModRef.cpp
diff -u llvm/lib/Analysis/IPA/GlobalsModRef.cpp:1.4 llvm/lib/Analysis/IPA/GlobalsModRef.cpp:1.5
--- llvm/lib/Analysis/IPA/GlobalsModRef.cpp:1.4 Tue Jul 27 02:46:26 2004
+++ llvm/lib/Analysis/IPA/GlobalsModRef.cpp Tue Jul 27 03:03:18 2004
@@ -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 @@
/// 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)
More information about the llvm-commits
mailing list