From: Korey Sewell Date: Mon, 20 Jun 2011 01:43:41 +0000 (-0400) Subject: mips: mark unaligned access flag as true X-Git-Tag: stable_2012_02_02~213 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59686795e3ff9a2fc82e8cbab16f02c0575b0211;p=gem5.git mips: mark unaligned access flag as true --- diff --git a/src/arch/mips/isa_traits.hh b/src/arch/mips/isa_traits.hh index 4d07c5abe..2f789c6bf 100644 --- a/src/arch/mips/isa_traits.hh +++ b/src/arch/mips/isa_traits.hh @@ -161,8 +161,7 @@ const int ByteBytes = 1; const int ANNOTE_NONE = 0; const uint32_t ITOUCH_ANNOTE = 0xffffffff; -// Memory accesses cannot be unaligned -const bool HasUnalignedMemAcc = false; +const bool HasUnalignedMemAcc = true; } // namespace MipsISA