diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-11 07:15:16 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-11 07:15:16 -0500 |
commit | 239a89e713226ead8765423b65ee564ec8153310 (patch) | |
tree | 76eb7259263f090eb1653a015e4ccda967a207cf /src/arch/alpha/pagetable.hh | |
parent | 77254e513d71ed666bf2f923d0f115b9b86aca1b (diff) | |
download | gem5-239a89e713226ead8765423b65ee564ec8153310.tar.xz |
Certain header files should only be used in FS.
src/arch/alpha/faults.hh:
Only use pagetable.hh in FS
src/arch/alpha/pagetable.hh:
pagetable.hh should only be included in FS, so protecting it internally should be unnecessary.
src/cpu/exetrace.cc:
Only use tlb.hh in FS
--HG--
extra : convert_revision : 91ea61f2e7970e7146b6d407ee250fcb20cd4d48
Diffstat (limited to 'src/arch/alpha/pagetable.hh')
-rw-r--r-- | src/arch/alpha/pagetable.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/alpha/pagetable.hh b/src/arch/alpha/pagetable.hh index 3108c0a3e..7ec4a6a75 100644 --- a/src/arch/alpha/pagetable.hh +++ b/src/arch/alpha/pagetable.hh @@ -38,7 +38,6 @@ namespace AlphaISA { -#if FULL_SYSTEM struct VAddr { static const int ImplBits = 43; @@ -106,7 +105,7 @@ namespace AlphaISA { void serialize(std::ostream &os); void unserialize(Checkpoint *cp, const std::string §ion); }; -#endif + }; #endif // __ARCH_ALPHA_PAGETABLE_H__ |