mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-29 16:04:33 +00:00
Print symbolic register names in debug dumps
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22528 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bc9e49c77d
commit
8e7a70976d
@ -206,8 +206,10 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
|
||||
/// print - Implement the dump method.
|
||||
void LiveIntervals::print(std::ostream &O, const Module* ) const {
|
||||
O << "********** INTERVALS **********\n";
|
||||
for (const_iterator I = begin(), E = end(); I != E; ++I)
|
||||
O << " " << I->second << "\n";
|
||||
for (const_iterator I = begin(), E = end(); I != E; ++I) {
|
||||
I->second.print(std::cerr, mri_);
|
||||
std::cerr << "\n";
|
||||
}
|
||||
|
||||
O << "********** MACHINEINSTRS **********\n";
|
||||
for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
|
||||
|
Loading…
Reference in New Issue
Block a user