aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-02-25 03:59:03 +0000
committerJim Grosbach <grosbach@apple.com>2011-02-25 03:59:03 +0000
commit3fc831779843bb4091f931b10ad0db1d97f82bd2 (patch)
tree78e5bc7e99cfd205682cfb13ebc5c5b1bbafaf04 /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
parent9831f2d585816fc293504ea66e40e8a6c5a5d702 (diff)
downloadexternal_llvm-3fc831779843bb4091f931b10ad0db1d97f82bd2.zip
external_llvm-3fc831779843bb4091f931b10ad0db1d97f82bd2.tar.gz
external_llvm-3fc831779843bb4091f931b10ad0db1d97f82bd2.tar.bz2
Fix formatting of debug helper string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index ba0e855..1cf67d3 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -1916,7 +1916,7 @@ bool SelectionDAGBuilder::handleJTSwitchCase(CaseRec& CR,
DEBUG(dbgs() << "Lowering jump table\n"
<< "First entry: " << First << ". Last entry: " << Last << '\n'
<< "Range: " << Range
- << "Size: " << TSize << ". Density: " << Density << "\n\n");
+ << ". Size: " << TSize << ". Density: " << Density << "\n\n");
// Get the MachineFunction which holds the current MBB. This is used when
// inserting any additional MBBs necessary to represent the switch.