mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-04 06:51:56 +00:00
[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:
parent
4f3b96726b
commit
8474470500
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user