diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-14 02:47:26 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-14 02:47:26 +0000 |
commit | 9269926bfb713e92e328e9578c6d8826c68dcb9d (patch) | |
tree | ac4625b769dad18606526578e2235c60c69da06e | |
parent | 2763dfdc701964a01c4a0386fadd1c4e92be9021 (diff) |
Remove a 'protected' keyword, now that SCEVExpander is no longer
intended to be subclassed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96149 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/ScalarEvolutionExpander.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpander.h b/include/llvm/Analysis/ScalarEvolutionExpander.h index 9e5f5d7f55..a9a70cbbb4 100644 --- a/include/llvm/Analysis/ScalarEvolutionExpander.h +++ b/include/llvm/Analysis/ScalarEvolutionExpander.h @@ -54,11 +54,11 @@ namespace llvm { /// in a more literal form. bool CanonicalMode; - protected: typedef IRBuilder<true, TargetFolder> BuilderType; BuilderType Builder; friend struct SCEVVisitor<SCEVExpander, Value*>; + public: /// SCEVExpander - Construct a SCEVExpander in "canonical" mode. explicit SCEVExpander(ScalarEvolution &se) |