From 6528d0e74f87b36c2adebbd59e44e8d74f5f7f05 Mon Sep 17 00:00:00 2001 From: Teresa Johnson Date: Tue, 2 Jul 2019 18:54:03 +0000 Subject: [PATCH] [RA] Fix spelling of Greedy register allocator internal option The internal option added with r323870 has a typo. It isn't being used by any tests, but I decided to fix the spelling and leave it in for use in debugging the changes added in that patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364958 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/RegAllocGreedy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp index 64850409748..771fc46415d 100644 --- a/lib/CodeGen/RegAllocGreedy.cpp +++ b/lib/CodeGen/RegAllocGreedy.cpp @@ -137,7 +137,7 @@ CSRFirstTimeCost("regalloc-csr-first-time-cost", cl::init(0), cl::Hidden); static cl::opt ConsiderLocalIntervalCost( - "condsider-local-interval-cost", cl::Hidden, + "consider-local-interval-cost", cl::Hidden, cl::desc("Consider the cost of local intervals created by a split " "candidate when choosing the best split candidate."), cl::init(false)); -- 2.40.0