[LLE] Fix a comment

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@262270 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Adam Nemet 2016-02-29 23:21:12 +00:00
parent 3a7e753170
commit 525f545ba3

View 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)) {