From f33b1103a1d24d5d03294fe7332a295e9f6b1f1d Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Thu, 19 Mar 2009 17:23:29 +0000 Subject: [PATCH] Fix comment typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67307 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Utils/SimplifyCFG.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index 925e3e9e1f8..1cbf91fd7a4 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -85,7 +85,7 @@ static bool CanPropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) { DOUT << "Looking to fold " << BB->getNameStart() << " into " << Succ->getNameStart() << "\n"; - // Shortcut, if there is only a single predecessor is must be BB and merging + // Shortcut, if there is only a single predecessor it must be BB and merging // is always safe if (Succ->getSinglePredecessor()) return true; -- 2.34.1