diff options
| author | Andreas Bolka <a@bolka.at> | 2009-07-25 12:19:58 +0000 | 
|---|---|---|
| committer | Andreas Bolka <a@bolka.at> | 2009-07-25 12:19:58 +0000 | 
| commit | 8377af0296b8c4afd98d0d3a3a789e74d2aea2f7 (patch) | |
| tree | 5a86da7277a264149c7b3f6f5caa5983980129f2 /llvm/lib/Analysis | |
| parent | e87599356fccddc03fddb1accd4016eb9cf3033e (diff) | |
| download | bcm5719-llvm-8377af0296b8c4afd98d0d3a3a789e74d2aea2f7.tar.gz bcm5719-llvm-8377af0296b8c4afd98d0d3a3a789e74d2aea2f7.zip  | |
Convert DOUT to DEBUG.
llvm-svn: 77065
Diffstat (limited to 'llvm/lib/Analysis')
| -rw-r--r-- | llvm/lib/Analysis/LoopDependenceAnalysis.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Analysis/LoopDependenceAnalysis.cpp b/llvm/lib/Analysis/LoopDependenceAnalysis.cpp index 60efa776353..421e4e1ac18 100644 --- a/llvm/lib/Analysis/LoopDependenceAnalysis.cpp +++ b/llvm/lib/Analysis/LoopDependenceAnalysis.cpp @@ -101,7 +101,7 @@ bool LoopDependenceAnalysis::findOrInsertDependencePair(Value *X,  }  void LoopDependenceAnalysis::analysePair(DependencePair *P) const { -  DOUT << "Analysing:\n" << *P->A << "\n" << *P->B << "\n"; +  DEBUG(errs() << "Analysing:\n" << *P->A << "\n" << *P->B << "\n");    // Our default answer: we don't know anything, i.e. we failed to analyse this    // pair to get a more specific answer (dependent, independent). @@ -110,7 +110,7 @@ void LoopDependenceAnalysis::analysePair(DependencePair *P) const {    // We only analyse loads and stores but no possible memory accesses by e.g.    // free, call, or invoke instructions.    if (!IsLoadOrStoreInst(P->A) || !IsLoadOrStoreInst(P->B)) { -    DOUT << "--> [?] no load/store\n"; +    DEBUG(errs() << "--> [?] no load/store\n");      return;    } @@ -124,20 +124,20 @@ void LoopDependenceAnalysis::analysePair(DependencePair *P) const {    // We can not analyse objects if we do not know about their aliasing.    if (alias == AliasAnalysis::MayAlias) { -    DOUT << "---> [?] may alias\n"; +    DEBUG(errs() << "---> [?] may alias\n");      return;    }    // If the objects noalias, they are distinct, accesses are independent.    if (alias == AliasAnalysis::NoAlias) { -    DOUT << "---> [I] no alias\n"; +    DEBUG(errs() << "---> [I] no alias\n");      P->Result = Independent;      return;    }    // TODO: the underlying objects MustAlias, test for dependence -  DOUT << "---> [?] cannot analyse\n"; +  DEBUG(errs() << "---> [?] cannot analyse\n");    return;  }  | 

