diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-31 20:19:03 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-31 20:19:03 +0000 |
commit | 34341e69c4fc65122904d4a60e2659518a7c9442 (patch) | |
tree | a01efa4a00ff38d77eca4563dd83fd1f7872e757 /llvm/lib/CodeGen/SelectionDAG | |
parent | 18dc1c5c9e93ffa7c848c6e242529987de081e41 (diff) | |
download | bcm5719-llvm-34341e69c4fc65122904d4a60e2659518a7c9442.tar.gz bcm5719-llvm-34341e69c4fc65122904d4a60e2659518a7c9442.zip |
Make -print-machineinstrs more readable.
- Be consistent when referring to MachineBasicBlocks: BB#0.
- Be consistent when referring to virtual registers: %reg1024.
- Be consistent when referring to unknown physical registers: %physreg10.
- Be consistent when referring to known physical registers: %RAX
- Be consistent when referring to register 0: %reg0
- Be consistent when printing alignments: align=16
- Print jump table contents.
- Don't print host addresses, in general.
- and various other cleanups.
llvm-svn: 85682
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 0af0746017f..98e7317b493 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5754,9 +5754,9 @@ void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const { } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) { if (G && R->getReg() && TargetRegisterInfo::isPhysicalRegister(R->getReg())) { - OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg()); + OS << " %" << G->getTarget().getRegisterInfo()->getName(R->getReg()); } else { - OS << " #" << R->getReg(); + OS << " %reg" << R->getReg(); } } else if (const ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(this)) { |