diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-17 21:03:54 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-17 21:03:54 +0000 |
commit | fc8deb971d2b4dff370ba93948975e33a038605d (patch) | |
tree | 404d30c3b6f3fd24d1804866f24bb15ab037339d | |
parent | 3e0f60be46cb5363d4375f26a5e27d1dcd9867fb (diff) | |
download | external_llvm-fc8deb971d2b4dff370ba93948975e33a038605d.zip external_llvm-fc8deb971d2b4dff370ba93948975e33a038605d.tar.gz external_llvm-fc8deb971d2b4dff370ba93948975e33a038605d.tar.bz2 |
Commit this change, to accompany r76232.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76238 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/ScalarEvolution.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h index b14418a..274a3b5 100644 --- a/include/llvm/Analysis/ScalarEvolution.h +++ b/include/llvm/Analysis/ScalarEvolution.h @@ -43,6 +43,7 @@ namespace llvm { class LLVMContext; class Loop; class LoopInfo; + class Operator; /// SCEV - This class represents an analyzed expression in the program. These /// are opaque objects that the client is not allowed to do much with @@ -242,7 +243,7 @@ namespace llvm { /// createNodeForGEP - Provide the special handling we need to analyze GEP /// SCEVs. - const SCEV *createNodeForGEP(User *GEP); + const SCEV *createNodeForGEP(Operator *GEP); /// ReplaceSymbolicValueWithConcrete - This looks up the computed SCEV value /// for the specified instruction and replaces any references to the |