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 | 4fcf153ffd049358bd611364d21812f55812fd19 (patch) | |
| tree | 0dd10e34df9cd3306911a295e2d1986a07d6fe13 /llvm/lib | |
| parent | 44a50ea5b7faf1e6a7b7781d9467db2d2dd93431 (diff) | |
| download | bcm5719-llvm-4fcf153ffd049358bd611364d21812f55812fd19.tar.gz bcm5719-llvm-4fcf153ffd049358bd611364d21812f55812fd19.zip | |
Changes for GCC 3.1
llvm-svn: 3068
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index d2e8c215192..f7a6332e78c 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/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 |

