Make the IVUses member private.
authorDan Gohman <gohman@apple.com>
Mon, 14 Dec 2009 17:14:32 +0000 (17:14 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 14 Dec 2009 17:14:32 +0000 (17:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91291 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/IVUsers.h

index 22fbb35cdb928f354eb62c5fe0cb8ec203b90685..fcd9caa61f2c9a5b80c35f13bad7d3ed558ae61c 100644 (file)
@@ -175,11 +175,11 @@ class IVUsers : public LoopPass {
   ScalarEvolution *SE;
   SmallPtrSet<Instruction*,16> Processed;
 
-public:
   /// IVUses - A list of all tracked IV uses of induction variable expressions
   /// we are interested in.
   ilist<IVUsersOfOneStride> IVUses;
 
+public:
   /// IVUsesByStride - A mapping from the strides in StrideOrder to the
   /// uses in IVUses.
   std::map<const SCEV *, IVUsersOfOneStride*> IVUsesByStride;