[llvm-commits] [llvm] r69806 - /llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h

Dan Gohman gohman at apple.com
Wed Apr 22 09:00:36 PDT 2009


Author: djg
Date: Wed Apr 22 11:00:36 2009
New Revision: 69806

URL: http://llvm.org/viewvc/llvm-project?rev=69806&view=rev
Log:
Make SCEVExpanders private methods private, instead of protected.

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=69806&r1=69805&r2=69806&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h (original)
+++ llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h Wed Apr 22 11:00:36 2009
@@ -91,7 +91,8 @@
     /// of work to avoid inserting an obviously redundant operation.
     static Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS,
                               Value *RHS, Instruction *InsertPt);
-  protected:
+
+  private:
     Value *expand(const SCEV *S);
 
     Value *visitConstant(const SCEVConstant *S) {





More information about the llvm-commits mailing list