From efc091f457c98ecf86498fe0fd45c81a58d4a2ab Mon Sep 17 00:00:00 2001 From: Adam Nemet Date: Mon, 29 Feb 2016 23:21:12 +0000 Subject: [PATCH] [LLE] Fix a comment llvm-svn: 262270 --- llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)) { -- 2.7.4