mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 10:04:33 +00:00
[LAA] Fix confusing debug message
This message used to be correct, when all we cared about was whether the dependence was safe (i.e. NoDep) or unsafe. With the current more precise characterization, this is a forward dep. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ba3a53c045
commit
3c65ddccbc
@ -1217,7 +1217,7 @@ MemoryDepChecker::isDependent(const MemAccessInfo &A, unsigned AIdx,
|
||||
return Dependence::ForwardButPreventsForwarding;
|
||||
}
|
||||
|
||||
DEBUG(dbgs() << "LAA: Dependence is negative: NoDep\n");
|
||||
DEBUG(dbgs() << "LAA: Dependence is negative\n");
|
||||
return Dependence::Forward;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user