diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-29 01:18:52 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-29 01:18:52 +0000 |
commit | 1ba74fb8f14389282e1b86579a46a38b5710e193 (patch) | |
tree | 9a994e2b0b9367ee7ff419f5e3a48a1efee4e6da /target-mips/cpu.h | |
parent | 92e90443046963309bbe24f306792501f95b938f (diff) |
target-mips: optimize gen_compute_branch()
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6936 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/cpu.h')
-rw-r--r-- | target-mips/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h index cbf3cbd73e..b415dc43be 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -443,7 +443,7 @@ struct CPUMIPSState { #define MIPS_HFLAG_BL 0x0C00 /* Likely branch */ #define MIPS_HFLAG_BR 0x1000 /* branch to register (can't link TB) */ target_ulong btarget; /* Jump / branch target */ - int bcond; /* Branch condition (if needed) */ + target_ulong bcond; /* Branch condition (if needed) */ int SYNCI_Step; /* Address step size for SYNCI */ int CCRes; /* Cycle count resolution/divisor */ |