summaryrefslogtreecommitdiff
path: root/lib/Analysis
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-04-19 15:33:35 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-04-19 15:33:35 +0000
commit5e091f3e329a28918130f246c30e4e10d120f36b (patch)
tree66b93bdb8ce2d99056473703511f85723919684b /lib/Analysis
parentbf9b3716eda91629d1597e290034d9ce050d0b13 (diff)
downloadllvm-5e091f3e329a28918130f246c30e4e10d120f36b.tar.gz
llvm-5e091f3e329a28918130f246c30e4e10d120f36b.tar.bz2
llvm-5e091f3e329a28918130f246c30e4e10d120f36b.tar.xz
friendlier error message
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27829 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/DataStructure/BottomUpClosure.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp
index 25ddda5932..489065f3a4 100644
--- a/lib/Analysis/DataStructure/BottomUpClosure.cpp
+++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp
@@ -140,7 +140,7 @@ bool BUDataStructures::runOnModule(Module &M) {
if (!I->isExternal() && !DSInfo.count(I)) {
#ifndef NDEBUG
if (MainFunc)
- std::cerr << "*** Function unreachable from main: "
+ std::cerr << "*** BU: Function unreachable from main: "
<< I->getName() << "\n";
#endif
calculateGraphs(I, Stack, NextID, ValMap); // Calculate all graphs.