sparc: Minor cleanup in isa_traits.hh.

Remove unnecessary includes, and an unnecessary/unimplemented function
prototype.

Change-Id: I2230c1ec62734d918f0f6af6f4c1e1a64f25f812
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/33201
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Gabe Black
2020-08-21 21:16:22 -07:00
parent 5e1bc74efe
commit 1e18de8270
2 changed files with 1 additions and 7 deletions

View File

@@ -29,10 +29,7 @@
#ifndef __ARCH_SPARC_ISA_TRAITS_HH__
#define __ARCH_SPARC_ISA_TRAITS_HH__
#include "arch/sparc/sparc_traits.hh"
#include "arch/sparc/types.hh"
#include "base/types.hh"
#include "cpu/static_inst_fwd.hh"
namespace SparcISA
{
@@ -42,8 +39,6 @@ const ByteOrder GuestByteOrder = BigEndianByteOrder;
const Addr PageShift = 13;
const Addr PageBytes = ULL(1) << PageShift;
StaticInstPtr decodeInst(ExtMachInst);
}
#endif // __ARCH_SPARC_ISA_TRAITS_HH__

View File

@@ -34,8 +34,7 @@
#include "arch/sparc/isa_traits.hh"
#include "base/bitfield.hh"
#include "base/logging.hh"
class Checkpoint;
#include "sim/serialize.hh"
namespace SparcISA
{