diff options
author | Kazu Hirata <kazu@google.com> | 2022-08-07 23:55:23 -0700 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2022-08-07 23:55:24 -0700 |
commit | 0e37ef0186acf071994ea80dde788c397822ed72 (patch) | |
tree | f031d2247568045cb5bedb6ae0f5f0a2d1af48bf /llvm/lib/Transforms/Utils/LoopPeel.cpp | |
parent | d3651aa697c6a099768ffdde3f3c26a42f113268 (diff) | |
download | llvm-0e37ef0186acf071994ea80dde788c397822ed72.zip llvm-0e37ef0186acf071994ea80dde788c397822ed72.tar.gz llvm-0e37ef0186acf071994ea80dde788c397822ed72.tar.bz2 |
[Transforms] Fix comment typos (NFC)
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopPeel.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopPeel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopPeel.cpp b/llvm/lib/Transforms/Utils/LoopPeel.cpp index 9a7f9df..3ccb766 100644 --- a/llvm/lib/Transforms/Utils/LoopPeel.cpp +++ b/llvm/lib/Transforms/Utils/LoopPeel.cpp @@ -331,7 +331,7 @@ static unsigned countToEliminateCompares(Loop &L, unsigned MaxPeelCount, /// This "heuristic" exactly matches implicit behavior which used to exist /// inside getLoopEstimatedTripCount. It was added here to keep an -/// improvement inside that API from causing peeling to become more agressive. +/// improvement inside that API from causing peeling to become more aggressive. /// This should probably be removed. static bool violatesLegacyMultiExitLoopCheck(Loop *L) { BasicBlock *Latch = L->getLoopLatch(); |