[JumpThreading] Fix a comment typo (NFC)
authorKazu Hirata <kazu@google.com>
Fri, 8 Nov 2019 17:29:46 +0000 (09:29 -0800)
committerKazu Hirata <kazu@google.com>
Fri, 8 Nov 2019 17:29:46 +0000 (09:29 -0800)
Reviewers: kazu

Subscribers: hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D70013

llvm/lib/Transforms/Scalar/JumpThreading.cpp

index 347e2cb..6b90f41 100644 (file)
@@ -1897,7 +1897,7 @@ bool JumpThreadingPass::MaybeMergeBasicBlockIntoOnlyPred(BasicBlock *BB) {
   LVI->eraseBlock(SinglePred);
   MergeBasicBlockIntoOnlyPred(BB, DTU);
 
-  // Now that BB is merged into SinglePred (i.e. SinglePred Code followed by
+  // Now that BB is merged into SinglePred (i.e. SinglePred code followed by
   // BB code within one basic block `BB`), we need to invalidate the LVI
   // information associated with BB, because the LVI information need not be
   // true for all of BB after the merge. For example,