Remove liveout lists from MachineRegisterInfo.
[oota-llvm.git] / lib / CodeGen / MachineFunction.cpp
index 4a9a62a7048b7c0f9852dabcaed9c4b55800d4c9..1898222005d8c97894636c7971bf74ab655e0c25 100644 (file)
@@ -346,13 +346,6 @@ void MachineFunction::print(raw_ostream &OS, SlotIndexes *Indexes) const {
     }
     OS << '\n';
   }
-  if (RegInfo && !RegInfo->liveout_empty()) {
-    OS << "Function Live Outs:";
-    for (MachineRegisterInfo::liveout_iterator
-         I = RegInfo->liveout_begin(), E = RegInfo->liveout_end(); I != E; ++I)
-      OS << ' ' << PrintReg(*I, TRI);
-    OS << '\n';
-  }
 
   for (const_iterator BB = begin(), E = end(); BB != E; ++BB) {
     OS << '\n';