aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Scalar/LoopFuse.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-08-07 23:55:23 -0700
committerKazu Hirata <kazu@google.com>2022-08-07 23:55:24 -0700
commit0e37ef0186acf071994ea80dde788c397822ed72 (patch)
treef031d2247568045cb5bedb6ae0f5f0a2d1af48bf /llvm/lib/Transforms/Scalar/LoopFuse.cpp
parentd3651aa697c6a099768ffdde3f3c26a42f113268 (diff)
downloadllvm-0e37ef0186acf071994ea80dde788c397822ed72.zip
llvm-0e37ef0186acf071994ea80dde788c397822ed72.tar.gz
llvm-0e37ef0186acf071994ea80dde788c397822ed72.tar.bz2
[Transforms] Fix comment typos (NFC)
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopFuse.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/LoopFuse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopFuse.cpp b/llvm/lib/Transforms/Scalar/LoopFuse.cpp
index d873644..19cf0eb 100644
--- a/llvm/lib/Transforms/Scalar/LoopFuse.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopFuse.cpp
@@ -428,7 +428,7 @@ using LoopVector = SmallVector<Loop *, 4>;
// order. Thus, if FC0 comes *before* FC1 in a FusionCandidateSet, then FC0
// dominates FC1 and FC1 post-dominates FC0.
// std::set was chosen because we want a sorted data structure with stable
-// iterators. A subsequent patch to loop fusion will enable fusing non-ajdacent
+// iterators. A subsequent patch to loop fusion will enable fusing non-adjacent
// loops by moving intervening code around. When this intervening code contains
// loops, those loops will be moved also. The corresponding FusionCandidates
// will also need to be moved accordingly. As this is done, having stable