From: Adam Nemet Date: Mon, 29 Feb 2016 23:21:12 +0000 (+0000) Subject: [LLE] Fix a comment X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=efc091f457c98ecf86498fe0fd45c81a58d4a2ab;p=platform%2Fupstream%2Fllvm.git [LLE] Fix a comment llvm-svn: 262270 --- diff --git a/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp b/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp index a363d24..c6cec12 100644 --- a/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp +++ b/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp @@ -219,9 +219,9 @@ public: if (OtherCand == nullptr) continue; - // Handle the very basic of case when the two stores are in the same - // block so deciding which one forwards is easy. The later one forwards - // as long as they both have a dependence distance of one to the load. + // Handle the very basic case when the two stores are in the same block + // so deciding which one forwards is easy. The later one forwards as + // long as they both have a dependence distance of one to the load. if (Cand.Store->getParent() == OtherCand->Store->getParent() && Cand.isDependenceDistanceOfOne(PSE) && OtherCand->isDependenceDistanceOfOne(PSE)) {