[LLE] Fix a comment
authorAdam Nemet <anemet@apple.com>
Mon, 29 Feb 2016 23:21:12 +0000 (23:21 +0000)
committerAdam Nemet <anemet@apple.com>
Mon, 29 Feb 2016 23:21:12 +0000 (23:21 +0000)
llvm-svn: 262270

llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp

index a363d24..c6cec12 100644 (file)
@@ -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)) {