summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2013-02-05 18:21:56 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2013-02-05 18:21:56 +0000
commite6dc59891fc53d65b3f6d19772d26e23e0cc1cac (patch)
treecd15b038e81372f699c94d6213cf688e3c951b3a /lib/CodeGen/MachineFunction.cpp
parentb45e4deb102d47602f5b941da7f412ecc9a867e9 (diff)
downloadllvm-e6dc59891fc53d65b3f6d19772d26e23e0cc1cac.tar.gz
llvm-e6dc59891fc53d65b3f6d19772d26e23e0cc1cac.tar.bz2
llvm-e6dc59891fc53d65b3f6d19772d26e23e0cc1cac.tar.xz
Remove liveout lists from MachineRegisterInfo.
All targets are now adding return value registers as implicit uses on return instructions, and there is no longer a need for the live out lists. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174417 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineFunction.cpp')
-rw-r--r--lib/CodeGen/MachineFunction.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp
index 4a9a62a704..1898222005 100644
--- a/lib/CodeGen/MachineFunction.cpp
+++ b/lib/CodeGen/MachineFunction.cpp
@@ -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';