[llvm] 4e555a3 - Fix a misspell. NFC

Adrian Tong via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 22 14:23:34 PDT 2022


Author: Adrian Tong
Date: 2022-06-22T21:23:21Z
New Revision: 4e555a3df456441338e38579bd4ae1c9e80550e2

URL: https://github.com/llvm/llvm-project/commit/4e555a3df456441338e38579bd4ae1c9e80550e2
DIFF: https://github.com/llvm/llvm-project/commit/4e555a3df456441338e38579bd4ae1c9e80550e2.diff

LOG: Fix a misspell. NFC

Added: 
    

Modified: 
    llvm/lib/Transforms/Scalar/LICM.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp
index da079e42a8c4..2cb59509af7f 100644
--- a/llvm/lib/Transforms/Scalar/LICM.cpp
+++ b/llvm/lib/Transforms/Scalar/LICM.cpp
@@ -538,7 +538,7 @@ bool llvm::sinkRegion(DomTreeNode *N, AAResults *AA, LoopInfo *LI,
          CurLoop != nullptr && SafetyInfo != nullptr &&
          "Unexpected input to sinkRegion.");
 
-  // We want to visit children before parents. We will enque all the parents
+  // We want to visit children before parents. We will enqueue all the parents
   // before their children in the worklist and process the worklist in reverse
   // order.
   SmallVector<DomTreeNode *, 16> Worklist = collectChildrenInLoop(N, CurLoop);


        


More information about the llvm-commits mailing list