diff options
author | Tsuneo Saito <tsnsaito@gmail.com> | 2011-07-18 14:32:18 +0900 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-07-20 21:11:08 +0000 |
commit | b5176d279a81b3205a6f4e4757b39a4e4f8833e8 (patch) | |
tree | f2da298ef90e6f006875d29b5d8df8a38bffc970 /target-sparc | |
parent | d0510af26d854f714114a312eb4aed0649447eb2 (diff) |
SPARC64: treat UA2007 ASI_BLK_* as translating ASIs.
UA2007 ASI_BLK_* should be added in is_translating_asi().
Signed-off-by: Tsuneo Saito <tsnsaito@gmail.com>
Acked-by: Artyom Tarasenko <atar4qemu@gmail.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-sparc')
-rw-r--r-- | target-sparc/op_helper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index b99223eddb..8b0df68477 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -287,7 +287,8 @@ static inline int is_translating_asi(int asi) */ switch (asi) { case 0x04 ... 0x11: - case 0x18 ... 0x19: + case 0x16 ... 0x19: + case 0x1E ... 0x1F: case 0x24 ... 0x2C: case 0x70 ... 0x73: case 0x78 ... 0x79: |