Make the IVUses member private.

llvm-svn: 91291
This commit is contained in:
Dan Gohman 2009-12-14 17:14:32 +00:00
parent 4ee3981574
commit 66e7d522fe
1 changed files with 1 additions and 1 deletions

View 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;