From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:35453) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QigRk-0006BF-Lh for qemu-devel@nongnu.org; Mon, 18 Jul 2011 01:32:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QigRj-0004FN-EE for qemu-devel@nongnu.org; Mon, 18 Jul 2011 01:32:48 -0400 Received: from mail-iy0-f173.google.com ([209.85.210.173]:34786) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QigRj-0004FC-1u for qemu-devel@nongnu.org; Mon, 18 Jul 2011 01:32:47 -0400 Received: by iyb39 with SMTP id 39so1698355iyb.4 for ; Sun, 17 Jul 2011 22:32:45 -0700 (PDT) From: Tsuneo Saito Date: Mon, 18 Jul 2011 14:32:18 +0900 Message-Id: <1310967138-23132-1-git-send-email-tsnsaito@gmail.com> Subject: [Qemu-devel] [PATCH] SPARC64: treat UA2007 ASI_BLK_* as translating ASIs. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Tsuneo Saito UA2007 ASI_BLK_* should be added in is_translating_asi(). Signed-off-by: Tsuneo Saito --- 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 15af27b..8b9eb9f 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: -- 1.7.5.4