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 /include | |
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 'include')
-rw-r--r-- | include/llvm/Analysis/ScalarEvolution.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h index ae171e1..d786fb0 100644 --- a/include/llvm/Analysis/ScalarEvolution.h +++ b/include/llvm/Analysis/ScalarEvolution.h @@ -489,14 +489,6 @@ namespace llvm { const SCEV *getUMinFromMismatchedTypes(const SCEV *LHS, const SCEV *RHS); - /// hasSCEV - Return true if the SCEV for this value has already been - /// computed. - bool hasSCEV(Value *V) const; - - /// setSCEV - Insert the specified SCEV into the map of current SCEVs for - /// the specified value. - void setSCEV(Value *V, const SCEV *H); - /// getSCEVAtScope - Return a SCEV expression handle for the specified value /// at the specified scope in the program. The L value specifies a loop /// nest to evaluate the expression at, where null is the top-level or a |