aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/RegAllocBigBlock.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-10-14 20:25:08 +0000
committerDan Gohman <gohman@apple.com>2008-10-14 20:25:08 +0000
commit669b9bf656d0bdb22bee268c4dec5eb3b3add6d0 (patch)
tree0f1b5e70c2370fc9b8093bf2b9066e411bbe109d /lib/CodeGen/RegAllocBigBlock.cpp
parent0e3da1a836c39a1396f51562f08ae217fa9bc8f8 (diff)
downloadexternal_llvm-669b9bf656d0bdb22bee268c4dec5eb3b3add6d0.zip
external_llvm-669b9bf656d0bdb22bee268c4dec5eb3b3add6d0.tar.gz
external_llvm-669b9bf656d0bdb22bee268c4dec5eb3b3add6d0.tar.bz2
Fix command-line option printing to print two spaces where needed,
instead of requiring all "short description" strings to begin with two spaces. This makes these strings less mysterious, and it fixes some cases where short description strings mistakenly did not begin with two spaces. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57521 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocBigBlock.cpp')
-rw-r--r--lib/CodeGen/RegAllocBigBlock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocBigBlock.cpp b/lib/CodeGen/RegAllocBigBlock.cpp
index 0bc9538..68c7936 100644
--- a/lib/CodeGen/RegAllocBigBlock.cpp
+++ b/lib/CodeGen/RegAllocBigBlock.cpp
@@ -53,7 +53,7 @@ STATISTIC(NumLoads , "Number of loads added");
STATISTIC(NumFolded, "Number of loads/stores folded into instructions");
static RegisterRegAlloc
- bigBlockRegAlloc("bigblock", " Big-block register allocator",
+ bigBlockRegAlloc("bigblock", "Big-block register allocator",
createBigBlockRegisterAllocator);
namespace {