diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-24 20:05:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-24 20:05:58 +0000 |
commit | 3e43026095f273919daed6633cc838700f837a77 (patch) | |
tree | d9a7451d8c63b57cddd18632c30c4aa10d6df0b1 | |
parent | 2f828c343bc2c5dc644f0dcc07c7cfd5b8b7b4da (diff) | |
download | external_llvm-3e43026095f273919daed6633cc838700f837a77.zip external_llvm-3e43026095f273919daed6633cc838700f837a77.tar.gz external_llvm-3e43026095f273919daed6633cc838700f837a77.tar.bz2 |
standardize command line option names
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9496 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/RegAllocLocal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocLocal.cpp b/lib/CodeGen/RegAllocLocal.cpp index 92aec7b..8d19b69 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 { |