From 88c8e03f5ddca8c8448dbb99d9de07d87b03ddd6 Mon Sep 17 00:00:00 2001 From: "Igor V. Kovalenko" Date: Sun, 16 May 2010 04:11:29 +0400 Subject: [PATCH] sparc64: fix TT_WOTHER value - fix off by one error in spill trap number bit for other window (must be bit 5) - fixes invalid instruction issue with HelenOS Signed-off-by: Igor V. Kovalenko Signed-off-by: Blue Swirl --- target-sparc/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-sparc/cpu.h b/target-sparc/cpu.h index 22f3ad05d7..27b020b541 100644 --- a/target-sparc/cpu.h +++ b/target-sparc/cpu.h @@ -79,7 +79,7 @@ #define TT_DPROT 0x6c #define TT_SPILL 0x80 #define TT_FILL 0xc0 -#define TT_WOTHER 0x10 +#define TT_WOTHER (1 << 5) #define TT_TRAP 0x100 #endif