summaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocLocal.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-24 20:05:58 +0000
committerChris Lattner <sabre@nondot.org>2003-10-24 20:05:58 +0000
commit3e43026095f273919daed6633cc838700f837a77 (patch)
treed9a7451d8c63b57cddd18632c30c4aa10d6df0b1 /lib/CodeGen/RegAllocLocal.cpp
parent2f828c343bc2c5dc644f0dcc07c7cfd5b8b7b4da (diff)
downloadllvm-3e43026095f273919daed6633cc838700f837a77.tar.gz
llvm-3e43026095f273919daed6633cc838700f837a77.tar.bz2
llvm-3e43026095f273919daed6633cc838700f837a77.tar.xz
standardize command line option names
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9496 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocLocal.cpp')
-rw-r--r--lib/CodeGen/RegAllocLocal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocLocal.cpp b/lib/CodeGen/RegAllocLocal.cpp
index 92aec7b72d..8d19b69471 100644
--- a/lib/CodeGen/RegAllocLocal.cpp
+++ b/lib/CodeGen/RegAllocLocal.cpp
@@ -29,7 +29,7 @@
namespace {
Statistic<> NumSpilled ("ra-local", "Number of registers spilled");
Statistic<> NumReloaded("ra-local", "Number of registers reloaded");
- cl::opt<bool> DisableKill("no-kill", cl::Hidden,
+ cl::opt<bool> DisableKill("disable-kill", cl::Hidden,
cl::desc("Disable register kill in local-ra"));
class RA : public MachineFunctionPass {