diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:41 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:41 -0400 |
commit | 59686795e3ff9a2fc82e8cbab16f02c0575b0211 (patch) | |
tree | 77b17765187e2996c7569c04b729fa7b05b57933 /src/arch/mips | |
parent | 91a88ae8cee76afb2cd1dcf6e64bd84a9223703c (diff) | |
download | gem5-59686795e3ff9a2fc82e8cbab16f02c0575b0211.tar.xz |
mips: mark unaligned access flag as true
Diffstat (limited to 'src/arch/mips')
-rw-r--r-- | src/arch/mips/isa_traits.hh | 3 |
1 files changed, 1 insertions, 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 |