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/ozone/rename_table_impl.hh | |
parent | 52f90890a3f1d3a6485fe3804c1de6af654efbc6 (diff) | |
download | gem5-6decd70bfbc5eb877e4d897ee3d71d478b564f2d.tar.xz |
cpu: add consistent guarding to *_impl.hh files.
Diffstat (limited to 'src/cpu/ozone/rename_table_impl.hh')
-rw-r--r-- | src/cpu/ozone/rename_table_impl.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpu/ozone/rename_table_impl.hh b/src/cpu/ozone/rename_table_impl.hh index e8071e2b3..06551b3cb 100644 --- a/src/cpu/ozone/rename_table_impl.hh +++ b/src/cpu/ozone/rename_table_impl.hh @@ -27,6 +27,8 @@ * * Authors: Kevin Lim */ +#ifndef __CPU_OZONE_RENAME_TABLE_IMPL_HH__ +#define __CPU_OZONE_RENAME_TABLE_IMPL_HH__ #include <cstdlib> // Not really sure what to include to get NULL @@ -52,3 +54,5 @@ RenameTable<Impl>::copyFrom(const RenameTable<Impl> &table_to_copy) table[i] = table_to_copy.table[i]; } } + +#endif//__CPU_OZONE_RENAME_TABLE_IMPL_HH__ |