From 4e555a3df456441338e38579bd4ae1c9e80550e2 Mon Sep 17 00:00:00 2001 From: Adrian Tong Date: Wed, 22 Jun 2022 21:22:45 +0000 Subject: [PATCH] Fix a misspell. NFC --- llvm/lib/Transforms/Scalar/LICM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 Worklist = collectChildrenInLoop(N, CurLoop);