mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 16:17:17 +00:00
Avoid printing a redundant space in SDNode->dump().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86151 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -5814,9 +5814,8 @@ void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const {
|
|||||||
|
|
||||||
void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
|
void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
|
||||||
print_types(OS, G);
|
print_types(OS, G);
|
||||||
OS << " ";
|
|
||||||
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
||||||
if (i) OS << ", ";
|
if (i) OS << ", "; else OS << " ";
|
||||||
OS << (void*)getOperand(i).getNode();
|
OS << (void*)getOperand(i).getNode();
|
||||||
if (unsigned RN = getOperand(i).getResNo())
|
if (unsigned RN = getOperand(i).getResNo())
|
||||||
OS << ":" << RN;
|
OS << ":" << RN;
|
||||||
|
Reference in New Issue
Block a user