aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/InlineSpiller.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-08-07 00:16:14 -0700
committerKazu Hirata <kazu@google.com>2022-08-07 00:16:14 -0700
commita2d45017182a5b98a6a3c75de49e599d67c92fbb (patch)
treec12749f8b07f5c923b8f802330cc6bdae21cb69c /llvm/lib/CodeGen/InlineSpiller.cpp
parentaf2d2d775908734f2a71a70a24ad540760f2d88b (diff)
downloadllvm-a2d45017182a5b98a6a3c75de49e599d67c92fbb.zip
llvm-a2d45017182a5b98a6a3c75de49e599d67c92fbb.tar.gz
llvm-a2d45017182a5b98a6a3c75de49e599d67c92fbb.tar.bz2
[llvm] Fix comment typos (NFC)
Diffstat (limited to 'llvm/lib/CodeGen/InlineSpiller.cpp')
-rw-r--r--llvm/lib/CodeGen/InlineSpiller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/InlineSpiller.cpp b/llvm/lib/CodeGen/InlineSpiller.cpp
index 3ea1d6c..d243cb5 100644
--- a/llvm/lib/CodeGen/InlineSpiller.cpp
+++ b/llvm/lib/CodeGen/InlineSpiller.cpp
@@ -104,7 +104,7 @@ class HoistSpillHelper : private LiveRangeEdit::Delegate {
// Map from pair of (StackSlot and Original VNI) to a set of spills which
// have the same stackslot and have equal values defined by Original VNI.
- // These spills are mergeable and are hoist candiates.
+ // These spills are mergeable and are hoist candidates.
using MergeableSpillsMap =
MapVector<std::pair<int, VNInfo *>, SmallPtrSet<MachineInstr *, 16>>;
MergeableSpillsMap MergeableSpills;