summaryrefslogtreecommitdiff
path: root/src/mem/ruby/structures/PseudoLRUPolicy.hh
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2014-10-11 15:02:22 -0500
committerNilay Vaish <nilay@cs.wisc.edu>2014-10-11 15:02:22 -0500
commite7f918d8cd7ecc1c122dfae1204b44bf26a1dafc (patch)
tree1c84cb98a2080ee819d8f0e3dd64a1adb36f1943 /src/mem/ruby/structures/PseudoLRUPolicy.hh
parent0f28d632726c45542a9bb4a0bd6c356893e2b7d1 (diff)
downloadgem5-e7f918d8cd7ecc1c122dfae1204b44bf26a1dafc.tar.xz
ruby: structures: coorect #ifndef macros in header files
Diffstat (limited to 'src/mem/ruby/structures/PseudoLRUPolicy.hh')
-rw-r--r--src/mem/ruby/structures/PseudoLRUPolicy.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/ruby/structures/PseudoLRUPolicy.hh b/src/mem/ruby/structures/PseudoLRUPolicy.hh
index 8722728cf..9534fa781 100644
--- a/src/mem/ruby/structures/PseudoLRUPolicy.hh
+++ b/src/mem/ruby/structures/PseudoLRUPolicy.hh
@@ -26,8 +26,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef __MEM_RUBY_SYSTEM_PSEUDOLRUPOLICY_HH__
-#define __MEM_RUBY_SYSTEM_PSEUDOLRUPOLICY_HH__
+#ifndef __MEM_RUBY_STRUCTURES_PSEUDOLRUPOLICY_HH__
+#define __MEM_RUBY_STRUCTURES_PSEUDOLRUPOLICY_HH__
#include "mem/ruby/structures/AbstractReplacementPolicy.hh"
@@ -134,4 +134,4 @@ PseudoLRUPolicy::getVictim(int64 set) const
return (index > (m_assoc - 1)) ? m_assoc - 1 : index;
}
-#endif // __MEM_RUBY_SYSTEM_PSEUDOLRUPOLICY_HH__
+#endif // __MEM_RUBY_STRUCTURES_PSEUDOLRUPOLICY_HH__