From a3a2ee652b68ac797a532ce7c928300b18e4d28b Mon Sep 17 00:00:00 2001 From: Jason Thorpe Date: Wed, 4 Sep 2002 17:52:38 +0000 Subject: * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode if arm_apcs_32 is false. --- gdb/arm-tdep.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/arm-tdep.c') diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index b896b688650..fb1ac0169ed 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -225,10 +225,10 @@ arm_pc_is_thumb_dummy (CORE_ADDR memaddr) static CORE_ADDR arm_addr_bits_remove (CORE_ADDR val) { - if (arm_pc_is_thumb (val)) - return (val & (arm_apcs_32 ? 0xfffffffe : 0x03fffffe)); + if (arm_apcs_32) + return (val & (arm_pc_is_thumb (val) ? 0xfffffffe : 0xfffffffc)); else - return (val & (arm_apcs_32 ? 0xfffffffc : 0x03fffffc)); + return (val & 0x03fffffc); } /* When reading symbols, we need to zap the low bit of the address, -- cgit v1.2.1