From 09948a53317c341e20624a45773098bf687446d9 Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Wed, 19 Apr 2006 15:33:35 +0000 Subject: [PATCH] friendlier error message llvm-svn: 27829 --- lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 25ddda5932e..489065f3a4d 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.