mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
Make the IVUses member private.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91291 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -175,11 +175,11 @@ class IVUsers : public LoopPass {
|
|||||||
ScalarEvolution *SE;
|
ScalarEvolution *SE;
|
||||||
SmallPtrSet<Instruction*,16> Processed;
|
SmallPtrSet<Instruction*,16> Processed;
|
||||||
|
|
||||||
public:
|
|
||||||
/// IVUses - A list of all tracked IV uses of induction variable expressions
|
/// IVUses - A list of all tracked IV uses of induction variable expressions
|
||||||
/// we are interested in.
|
/// we are interested in.
|
||||||
ilist<IVUsersOfOneStride> IVUses;
|
ilist<IVUsersOfOneStride> IVUses;
|
||||||
|
|
||||||
|
public:
|
||||||
/// IVUsesByStride - A mapping from the strides in StrideOrder to the
|
/// IVUsesByStride - A mapping from the strides in StrideOrder to the
|
||||||
/// uses in IVUses.
|
/// uses in IVUses.
|
||||||
std::map<const SCEV *, IVUsersOfOneStride*> IVUsesByStride;
|
std::map<const SCEV *, IVUsersOfOneStride*> IVUsesByStride;
|
||||||
|
Reference in New Issue
Block a user