diff options
| author | Teresa Johnson <tejohnson@google.com> | 2019-07-02 18:54:03 +0000 |
|---|---|---|
| committer | Teresa Johnson <tejohnson@google.com> | 2019-07-02 18:54:03 +0000 |
| commit | e6768d613adb3313722d02aa5740f33ab11b60fe (patch) | |
| tree | d5e1f5bea2ee14af007f50f0acb53598da97f6cd /llvm | |
| parent | fa4e825a3bf83298cbf8250e44d43c3cb92926f0 (diff) | |
| download | bcm5719-llvm-e6768d613adb3313722d02aa5740f33ab11b60fe.tar.gz bcm5719-llvm-e6768d613adb3313722d02aa5740f33ab11b60fe.zip | |
[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.
llvm-svn: 364958
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/CodeGen/RegAllocGreedy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocGreedy.cpp b/llvm/lib/CodeGen/RegAllocGreedy.cpp index 64850409748..771fc46415d 100644 --- a/llvm/lib/CodeGen/RegAllocGreedy.cpp +++ b/llvm/lib/CodeGen/RegAllocGreedy.cpp @@ -137,7 +137,7 @@ CSRFirstTimeCost("regalloc-csr-first-time-cost", cl::init(0), cl::Hidden); static cl::opt<bool> 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)); |

