From: openocd-gerrit <ope...@us...> - 2023-09-02 10:47:17
|
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 18281b0c497694d91c5608be54583172838be75c (commit) from ea0ac6dc779f09fd21e007d93987a6a7eca5149e (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 18281b0c497694d91c5608be54583172838be75c Author: Robert Kovacsics <kov...@gm...> Date: Sat Aug 19 15:36:27 2023 +0100 tcl/arc: Fix ARC v2 registers r22/r23 There was a typo in the register numbering. Signed-off-by: Robert Kovacsics <kov...@gm...> Change-Id: Ie5d306725962c42f1bce976b80968145e6d0a177 Reviewed-on: https://review.openocd.org/c/openocd/+/7860 Tested-by: jenkins Reviewed-by: Oleksij Rempel <li...@re...> diff --git a/tcl/cpu/arc/v2.tcl b/tcl/cpu/arc/v2.tcl index d28b9d974..b24a67d0b 100644 --- a/tcl/cpu/arc/v2.tcl +++ b/tcl/cpu/arc/v2.tcl @@ -173,8 +173,8 @@ proc arc_v2_init_regs { } { r19 19 uint32 r20 20 uint32 r21 21 uint32 - r22 23 uint32 - r23 24 uint32 + r22 22 uint32 + r23 23 uint32 r24 24 uint32 r25 25 uint32 gp 26 data_ptr ----------------------------------------------------------------------- Summary of changes: tcl/cpu/arc/v2.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Main OpenOCD repository |