diff options
author | Adam Nemet <anemet@apple.com> | 2016-05-05 23:41:28 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2016-05-05 23:41:28 +0000 |
commit | 724ab22378b1732e24e07382cd2611dc992db9fc (patch) | |
tree | 592f5b887ad5e05013d9d21476c99ca09264cf6b /llvm/lib | |
parent | 8913496b7751d33eb57943f906925a23039375b5 (diff) | |
download | bcm5719-llvm-724ab22378b1732e24e07382cd2611dc992db9fc.tar.gz bcm5719-llvm-724ab22378b1732e24e07382cd2611dc992db9fc.zip |
[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.
llvm-svn: 268695
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Analysis/LoopAccessAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LoopAccessAnalysis.cpp b/llvm/lib/Analysis/LoopAccessAnalysis.cpp index a7122982212..6b1c5f22aa3 100644 --- a/llvm/lib/Analysis/LoopAccessAnalysis.cpp +++ b/llvm/lib/Analysis/LoopAccessAnalysis.cpp @@ -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; } |