cortex_m: use the new enum ARMV7M_REGSEL_name
Register xPSR is indexed directly with its value 16 or with the incorrect enum ARMV7M_xPSR. Replace them with the new enum ARMV7M_REGSEL_xPSR. Change-Id: I86600e7f78e39002ce45f66d4792d5067c1f541b Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5873 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
@@ -530,7 +530,7 @@ static int cortex_m_debug_entry(struct target *target)
|
||||
/* For IT instructions xPSR must be reloaded on resume and clear on debug exec */
|
||||
if (xPSR & 0xf00) {
|
||||
r->dirty = r->valid;
|
||||
cortex_m_store_core_reg_u32(target, 16, xPSR & ~0xff);
|
||||
cortex_m_store_core_reg_u32(target, ARMV7M_REGSEL_xPSR, xPSR & ~0xff);
|
||||
}
|
||||
|
||||
/* Are we in an exception handler */
|
||||
|
||||
Reference in New Issue
Block a user