[llvm-commits] [llvm] r96149 - /llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h
Dan Gohman
gohman at apple.com
Sat Feb 13 18:47:27 PST 2010
Author: djg
Date: Sat Feb 13 20:47:26 2010
New Revision: 96149
URL: http://llvm.org/viewvc/llvm-project?rev=96149&view=rev
Log:
Remove a 'protected' keyword, now that SCEVExpander is no longer
intended to be subclassed.
Modified:
llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h
Modified: llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h?rev=96149&r1=96148&r2=96149&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h (original)
+++ llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h Sat Feb 13 20:47:26 2010
@@ -54,11 +54,11 @@
/// 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)
More information about the llvm-commits
mailing list