*** empty log message ***


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@675 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp b/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
index 898dd28..b9fd0ff 100644
--- a/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
+++ b/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 );