diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-24 22:33:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-24 22:33:50 +0000 |
commit | 1868227886adac176b287ec3731052692f15305b (patch) | |
tree | 2bb6c524c1a6b1e6b0cdd4d0178b28db62e7693f /lib/Analysis/DataStructure | |
parent | 39d69009d015a5177303c9d8865143531e099314 (diff) | |
download | external_llvm-1868227886adac176b287ec3731052692f15305b.zip external_llvm-1868227886adac176b287ec3731052692f15305b.tar.gz external_llvm-1868227886adac176b287ec3731052692f15305b.tar.bz2 |
Changes for GCC 3.1
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index d2e8c21..f7a6332 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -95,7 +95,7 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { // Start resolving calls... std::vector<std::vector<DSNodeHandle> > &FCs = Graph->getFunctionCalls(); - DEBUG(cerr << "Inlining: " << F.getName() << "\n"); + DEBUG(std::cerr << "Inlining: " << F.getName() << "\n"); bool Inlined; do { @@ -119,7 +119,7 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { // Self recursion... simply link up the formal arguments with the // actual arguments... - DEBUG(cerr << "Self Inlining: " << F.getName() << "\n"); + DEBUG(std::cerr << "Self Inlining: " << F.getName() << "\n"); if (Call[0]) // Handle the return value if present... Graph->RetNode->mergeWith(Call[0]); @@ -139,7 +139,7 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { // DSGraph &GI = calculateGraph(FI); // Graph to inline - DEBUG(cerr << "Got graph for " << FI.getName() << " in: " + DEBUG(std::cerr << "Got graph for " << FI.getName() << " in: " << F.getName() << "\n"); // Remember the callers for each callee for use in the top-down |