ruby: reverts to changeset: bf82f1f7b040
[gem5.git] / src / mem / ruby / structures / PseudoLRUPolicy.hh
index a4a388cf5225f03c707d1358bdc16369a7186ad0..fc5add8b129a7da821cb50f12752f313a4d6f411 100644 (file)
@@ -53,13 +53,13 @@ class PseudoLRUPolicy : public AbstractReplacementPolicy
     PseudoLRUPolicy(const Params * p);
     ~PseudoLRUPolicy();
 
-    void touch(int64_t set, int64_t way, Tick time);
-    int64_t getVictim(int64_t set) const;
+    void touch(int64 set, int64 way, Tick time);
+    int64 getVictim(int64 set) const;
 
   private:
     unsigned int m_effective_assoc;    /** nearest (to ceiling) power of 2 */
     unsigned int m_num_levels;         /** number of levels in the tree */
-    uint64_t *m_trees;                   /** bit representation of the
+    uint64m_trees;                   /** bit representation of the
                                         * trees, one for each set */
 };