*** empty log message ***

llvm-svn: 675
diff --git a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
index 898dd28..b9fd0ff 100644
--- a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
+++ b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
@@ -52,9 +52,10 @@
   for(  ; BBI != po_end(Meth) ; ++BBI, ++POId) 
   { 
 
-    if(DEBUG_LV) cout << " For BB " << (*BBI)->getName() << ":" << endl ;
-
     const BasicBlock *BB = *BBI;        // get the current BB 
+
+    if(DEBUG_LV) { cout << " For BB "; printValue(BB); cout << ":" << endl; }
+
                                         // create a new BBLiveVar
     BBLiveVar * LVBB = new BBLiveVar( BB, POId );