diff options
Diffstat (limited to 'src/arch/mips')
-rw-r--r-- | src/arch/mips/isa_traits.hh | 4 | ||||
-rw-r--r-- | src/arch/mips/system.cc | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/arch/mips/isa_traits.hh b/src/arch/mips/isa_traits.hh index 6e08c7e85..8dd7054ba 100644 --- a/src/arch/mips/isa_traits.hh +++ b/src/arch/mips/isa_traits.hh @@ -38,12 +38,10 @@ #include "base/types.hh" #include "cpu/static_inst_fwd.hh" -namespace LittleEndianGuest {} - namespace MipsISA { -using namespace LittleEndianGuest; +const ByteOrder GuestByteOrder = LittleEndianByteOrder; StaticInstPtr decodeInst(ExtMachInst); diff --git a/src/arch/mips/system.cc b/src/arch/mips/system.cc index 9967aa82c..3d2be34c8 100644 --- a/src/arch/mips/system.cc +++ b/src/arch/mips/system.cc @@ -41,8 +41,6 @@ #include "params/MipsSystem.hh" #include "sim/byteswap.hh" -using namespace LittleEndianGuest; - MipsSystem::MipsSystem(Params *p) : System(p) { } |