diff options
author | Gabe Black <gabeblack@google.com> | 2018-10-12 05:15:34 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-10-18 07:48:10 +0000 |
commit | 9d0fc9c29b6bd713967343c70844c7b64a5077ee (patch) | |
tree | cf1527df8c03ec077b8bbb0c5580a47deb4c664f /src/arch | |
parent | eb8989ec7649335c959947335c96f3b563623962 (diff) | |
download | gem5-9d0fc9c29b6bd713967343c70844c7b64a5077ee.tar.xz |
null: Stop specifying an endianness in isa_traits.hh.
The NULL ISA doesn't really have an endianness. Now that the packet
accessors which consumed that endianness are gone, we can get rid of
that setting as well.
Change-Id: I8dd4c7b8236b07df4458fea377865f30141121d4
Reviewed-on: https://gem5-review.googlesource.com/c/13466
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/null/isa_traits.hh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/arch/null/isa_traits.hh b/src/arch/null/isa_traits.hh index 8c45dd06b..d15f83cb4 100644 --- a/src/arch/null/isa_traits.hh +++ b/src/arch/null/isa_traits.hh @@ -42,15 +42,10 @@ #include "base/types.hh" -namespace LittleEndianGuest {} - namespace NullISA { - using namespace LittleEndianGuest; - const Addr PageShift = 12; const Addr PageBytes = ULL(1) << PageShift; - } #endif //__ARCH_NULL_ISA_TRAITS_HH__ |