diff options
author | Ali Saidi <Ali.Saidi@ARM.com> | 2010-06-02 12:58:17 -0500 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@ARM.com> | 2010-06-02 12:58:17 -0500 |
commit | 3dc6a8070ec8cbe9d5764aed9ff4437826183be8 (patch) | |
tree | e64468991c1596395242df6330484fb072d15d08 /configs/common | |
parent | f703e9c975146c7ad4214c544a8e075518cbd275 (diff) | |
download | gem5-3dc6a8070ec8cbe9d5764aed9ff4437826183be8.tar.xz |
ARM: fix sizes of structs for ARM Linux
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/cpu2000.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/cpu2000.py b/configs/common/cpu2000.py index f6c7a164f..7fcd4bcc3 100644 --- a/configs/common/cpu2000.py +++ b/configs/common/cpu2000.py @@ -663,7 +663,7 @@ class vortex(Benchmark): stdin = None def __init__(self, isa, os, input_set): - if isa == 'alpha': + if (isa == 'alpha' or isa == 'arm'): self.endian = 'lendian' elif (isa == 'sparc' or isa == 'sparc32'): self.endian = 'bendian' |