From: David L Kreitzer Date: Fri, 12 Aug 2016 21:06:53 +0000 (+0000) Subject: Fixed typo. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9667417a1a1a2590b023e9715a48049118440d42;p=platform%2Fupstream%2Fllvm.git Fixed typo. llvm-svn: 278565 --- diff --git a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp index eae2b33..e88d7eb 100644 --- a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp @@ -1539,7 +1539,7 @@ static Value *isSafeToSpeculateStore(Instruction *I, BasicBlock *BrBB, continue; --MaxNumInstToLookAt; - // Could be calling an instruction that effects memory like free(). + // Could be calling an instruction that affects memory like free(). if (CurI.mayHaveSideEffects() && !isa(CurI)) return nullptr;