diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-10 20:25:29 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-10 20:25:29 +0000 |
commit | ac2a9d613dfa7e7fcf95613484392c505ab2a4a4 (patch) | |
tree | 7165a63c224f35ad360f4fd1224a0284747f25de /lib | |
parent | 1edc4bbd3b8b4b36ae72ca4faf10e636df86caa7 (diff) | |
download | external_llvm-ac2a9d613dfa7e7fcf95613484392c505ab2a4a4.zip external_llvm-ac2a9d613dfa7e7fcf95613484392c505ab2a4a4.tar.gz external_llvm-ac2a9d613dfa7e7fcf95613484392c505ab2a4a4.tar.bz2 |
Remove ScalarEvolution::hasSCEV, which isn't being used, and which
breaks encapsulation. Also remove a dead prototype for setSCEV.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75272 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 7083acf..a9528cf 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -2120,12 +2120,6 @@ const SCEV *ScalarEvolution::getCouldNotCompute() { return &CouldNotCompute; } -/// hasSCEV - Return true if the SCEV for this value has already been -/// computed. -bool ScalarEvolution::hasSCEV(Value *V) const { - return Scalars.count(V); -} - /// getSCEV - Return an existing SCEV if it exists, otherwise analyze the /// expression and create a new one. const SCEV *ScalarEvolution::getSCEV(Value *V) { @@ -4966,8 +4960,8 @@ void ScalarEvolution::print(raw_ostream &OS, const Module* ) const { // out SCEV values of all instructions that are interesting. Doing // this potentially causes it to create new SCEV objects though, // which technically conflicts with the const qualifier. This isn't - // observable from outside the class though (the hasSCEV function - // notwithstanding), so casting away the const isn't dangerous. + // observable from outside the class though, so casting away the + // const isn't dangerous. ScalarEvolution &SE = *const_cast<ScalarEvolution*>(this); OS << "Classifying expressions for: " << F->getName() << "\n"; |