diff options
-rw-r--r-- | polly/lib/Transform/DeLICM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Transform/DeLICM.cpp b/polly/lib/Transform/DeLICM.cpp index 38430951fee..3b064e2892d 100644 --- a/polly/lib/Transform/DeLICM.cpp +++ b/polly/lib/Transform/DeLICM.cpp @@ -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; |