diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-31 19:32:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-31 19:32:12 +0000 |
commit | 7541b89092ed9c2e2c094e1a87cb111144601541 (patch) | |
tree | b12db7cac92ece95ee420623f96ce50649b96f04 /lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | 1b0a63fa6450fdf60ae79969ae55fd001cb3b5b3 (diff) |
Changes to be GCC3.1 friendly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 3ea7f0c96a..f35e531e41 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -235,7 +235,7 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { Graph->markIncompleteNodes(); Graph->removeDeadNodes(/*KeepAllGlobals*/ false, /*KeepCalls*/ false); - DEBUG(cerr << " [BU] Done inlining: " << F.getName() << "\n"); + DEBUG(std::cerr << " [BU] Done inlining: " << F.getName() << "\n"); return *Graph; } |