diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-04-19 15:33:35 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-04-19 15:33:35 +0000 |
commit | 5e091f3e329a28918130f246c30e4e10d120f36b (patch) | |
tree | 66b93bdb8ce2d99056473703511f85723919684b /lib/Analysis/DataStructure | |
parent | bf9b3716eda91629d1597e290034d9ce050d0b13 (diff) |
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/DataStructure')
-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 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. |