From: Dan Gohman Date: Mon, 14 Dec 2009 17:14:32 +0000 (+0000) Subject: Make the IVUses member private. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=35d913e6f3ff9267bb130c918d1286156e18797d;p=oota-llvm.git Make the IVUses member private. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91291 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/IVUsers.h b/include/llvm/Analysis/IVUsers.h index 22fbb35cdb9..fcd9caa61f2 100644 --- a/include/llvm/Analysis/IVUsers.h +++ b/include/llvm/Analysis/IVUsers.h @@ -175,11 +175,11 @@ class IVUsers : public LoopPass { ScalarEvolution *SE; SmallPtrSet Processed; -public: /// IVUses - A list of all tracked IV uses of induction variable expressions /// we are interested in. ilist IVUses; +public: /// IVUsesByStride - A mapping from the strides in StrideOrder to the /// uses in IVUses. std::map IVUsesByStride;