summaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocGreedy.cpp
diff options
context:
space:
mode:
authorQuentin Colombet <qcolombet@apple.com>2014-04-11 21:51:09 +0000
committerQuentin Colombet <qcolombet@apple.com>2014-04-11 21:51:09 +0000
commit010311b1044feb1ab04c5a5eafbf1fba02548d08 (patch)
tree79d35a9b41e62fa0b2e1293dbcde427668efda2d /lib/CodeGen/RegAllocGreedy.cpp
parent92a892e8f94533402b804d75080f9eec7da1e27b (diff)
downloadllvm-010311b1044feb1ab04c5a5eafbf1fba02548d08.tar.gz
llvm-010311b1044feb1ab04c5a5eafbf1fba02548d08.tar.bz2
llvm-010311b1044feb1ab04c5a5eafbf1fba02548d08.tar.xz
[RegAllocGreedy][Last Chance Recoloring] Change the name of the exhaustive search option.
fexhaustive-register-search => exhaustive-register-search 'f' is a Clang thing! This is related to PR18747. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206075 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocGreedy.cpp')
-rw-r--r--lib/CodeGen/RegAllocGreedy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp
index 7a120e8802..c4f98007da 100644
--- a/lib/CodeGen/RegAllocGreedy.cpp
+++ b/lib/CodeGen/RegAllocGreedy.cpp
@@ -74,7 +74,7 @@ static cl::opt<unsigned> LastChanceRecoloringMaxInterference(
cl::init(8));
static cl::opt<bool>
-ExhaustiveSearch("fexhaustive-register-search", cl::NotHidden,
+ExhaustiveSearch("exhaustive-register-search", cl::NotHidden,
cl::desc("Exhaustive Search for registers bypassing the depth "
"and interference cutoffs of last chance recoloring"));