diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-29 23:30:06 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-29 23:30:06 +0000 |
commit | 05efd893dbb171e87ddce096d637d0883eedbd69 (patch) | |
tree | 76fde716ceb389fd21fb6f757e9e7a81c9d928ea /llvm/lib/CodeGen | |
parent | dc28a8b9978e2d0d8a393c2fbac60f5debfcf42b (diff) | |
download | bcm5719-llvm-05efd893dbb171e87ddce096d637d0883eedbd69.tar.gz bcm5719-llvm-05efd893dbb171e87ddce096d637d0883eedbd69.zip |
Remove some unnecessary spaces in debug output.
llvm-svn: 85536
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 139eec3c2f8..a5345c8928d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5748,7 +5748,7 @@ void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const { OS << ":" << N->getVT().getEVTString(); } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) { - OS << " <" << *LD->getMemOperand(); + OS << "<" << *LD->getMemOperand(); bool doExt = true; switch (LD->getExtensionType()) { @@ -5766,7 +5766,7 @@ void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const { OS << ">"; } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) { - OS << " <" << *ST->getMemOperand(); + OS << "<" << *ST->getMemOperand(); if (ST->isTruncatingStore()) OS << ", trunc to " << ST->getMemoryVT().getEVTString(); @@ -5777,7 +5777,7 @@ void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const { OS << ">"; } else if (const MemSDNode* M = dyn_cast<MemSDNode>(this)) { - OS << " <" << *M->getMemOperand() << ">"; + OS << "<" << *M->getMemOperand() << ">"; } } |