From 59686795e3ff9a2fc82e8cbab16f02c0575b0211 Mon Sep 17 00:00:00 2001 From: Korey Sewell Date: Sun, 19 Jun 2011 21:43:41 -0400 Subject: [PATCH] mips: mark unaligned access flag as true --- src/arch/mips/isa_traits.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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