diff options
author | Matt Horsnell <matt.horsnell@ARM.com> | 2013-10-17 10:20:45 -0500 |
---|---|---|
committer | Matt Horsnell <matt.horsnell@ARM.com> | 2013-10-17 10:20:45 -0500 |
commit | 6decd70bfbc5eb877e4d897ee3d71d478b564f2d (patch) | |
tree | 95c55bcbc5c6641a27365082650c32edddbbce4d /src/cpu/o3/mem_dep_unit_impl.hh | |
parent | 52f90890a3f1d3a6485fe3804c1de6af654efbc6 (diff) | |
download | gem5-6decd70bfbc5eb877e4d897ee3d71d478b564f2d.tar.xz |
cpu: add consistent guarding to *_impl.hh files.
Diffstat (limited to 'src/cpu/o3/mem_dep_unit_impl.hh')
-rw-r--r-- | src/cpu/o3/mem_dep_unit_impl.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cpu/o3/mem_dep_unit_impl.hh b/src/cpu/o3/mem_dep_unit_impl.hh index 7fbea0216..009ae2b48 100644 --- a/src/cpu/o3/mem_dep_unit_impl.hh +++ b/src/cpu/o3/mem_dep_unit_impl.hh @@ -40,6 +40,9 @@ * Authors: Kevin Lim */ +#ifndef __CPU_O3_MEM_DEP_UNIT_IMPL_HH__ +#define __CPU_O3_MEM_DEP_UNIT_IMPL_HH__ + #include <map> #include "cpu/o3/inst_queue.hh" @@ -594,3 +597,5 @@ MemDepUnit<MemDepPred, Impl>::dumpLists() cprintf("Memory dependence entries: %i\n", MemDepEntry::memdep_count); #endif } + +#endif//__CPU_O3_MEM_DEP_UNIT_IMPL_HH__ |