Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/lib/libunwind PR toolchain/55837



details:   https://anonhg.NetBSD.org/src/rev/2f3f58ead38e
branches:  trunk
changeset: 379432:2f3f58ead38e
user:      rin <rin%NetBSD.org@localhost>
date:      Mon May 31 11:50:43 2021 +0000

description:
PR toolchain/55837

Fix DWARF/internal register numbers of s31 for arm.

diffstat:

 sys/lib/libunwind/Registers.hpp |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 9591c5ee482d -r 2f3f58ead38e sys/lib/libunwind/Registers.hpp
--- a/sys/lib/libunwind/Registers.hpp   Mon May 31 11:47:18 2021 +0000
+++ b/sys/lib/libunwind/Registers.hpp   Mon May 31 11:50:43 2021 +0000
@@ -318,7 +318,7 @@ enum {
   DWARF_ARM32_R15 = 15,
   DWARF_ARM32_SPSR = 128,
   DWARF_ARM32_S0 = 64,
-  DWARF_ARM32_S31 = 91,
+  DWARF_ARM32_S31 = 95,
   DWARF_ARM32_D0 = 256,
   DWARF_ARM32_D31 = 287,
   REGNO_ARM32_R0 = 0,
@@ -329,7 +329,7 @@ enum {
   REGNO_ARM32_D15 = 32,
   REGNO_ARM32_D31 = 48,
   REGNO_ARM32_S0 = 49,
-  REGNO_ARM32_S31 = 70,
+  REGNO_ARM32_S31 = 80,
 };
 
 class Registers_arm32 {



Home | Main Index | Thread Index | Old Index