[DeLICM] Fix wrong comment. NFC.

Correct a comment that claimed that a store after load was detected
when the code checks a load after a store.

llvm-svn: 295835
This commit is contained in:
Michael Kruse 2017-02-22 14:14:40 +00:00
parent 4f3b96726b
commit 8474470500

View File

@ -723,7 +723,7 @@ private:
give(isl_union_map_from_map(getAccessRelationFor(MA).take()));
if (MA->isRead()) {
// Reject store after load to same location.
// Reject load after store to same location.
if (!isl_union_map_is_disjoint(Stores.keep(), AccRel.keep()))
return false;