From: openocd-gerrit <ope...@us...> - 2023-01-15 15:01:31
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 11ee500bffe488eba95cea37c99cee6b196e04ff (commit) from 66da6f20e4df20511828424d835dfade7dd9d535 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 11ee500bffe488eba95cea37c99cee6b196e04ff Author: Boris-Chengbiao Zhou <bob...@we...> Date: Wed Oct 26 03:10:17 2022 +0200 target/armv7m: Rename xPSR to xpsr The org.gnu.gdb.arm.m-system GDB feature defines the name in lowercase letters.[1] Not adhering to the definition can cause issues with tools interacting with the GDB which expect the correct casing. [1]: https://sourceware.org/gdb/onlinedocs/gdb/ARM-Features.html Change-Id: I0b6584a78f86b053947d79686baad5dac3ec4a00 Signed-off-by: Boris-Chengbiao Zhou <bob...@we...> Reviewed-on: https://review.openocd.org/c/openocd/+/7292 Tested-by: jenkins Reviewed-by: Tomas Vanek <va...@fb...> Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/src/target/armv7m.c b/src/target/armv7m.c index 1b85315de..5745681d4 100644 --- a/src/target/armv7m.c +++ b/src/target/armv7m.c @@ -97,7 +97,7 @@ static const struct { { ARMV7M_R13, "sp", 32, REG_TYPE_DATA_PTR, "general", "org.gnu.gdb.arm.m-profile" }, { ARMV7M_R14, "lr", 32, REG_TYPE_INT, "general", "org.gnu.gdb.arm.m-profile" }, { ARMV7M_PC, "pc", 32, REG_TYPE_CODE_PTR, "general", "org.gnu.gdb.arm.m-profile" }, - { ARMV7M_XPSR, "xPSR", 32, REG_TYPE_INT, "general", "org.gnu.gdb.arm.m-profile" }, + { ARMV7M_XPSR, "xpsr", 32, REG_TYPE_INT, "general", "org.gnu.gdb.arm.m-profile" }, { ARMV7M_MSP, "msp", 32, REG_TYPE_DATA_PTR, "system", "org.gnu.gdb.arm.m-system" }, { ARMV7M_PSP, "psp", 32, REG_TYPE_DATA_PTR, "system", "org.gnu.gdb.arm.m-system" }, ----------------------------------------------------------------------- Summary of changes: src/target/armv7m.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |