1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[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
This commit is contained in:
Teresa Johnson 2019-07-02 18:54:03 +00:00
parent 033cf44765
commit a34bcd1ee4

View File

@ -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));