Hi, 
        I have submitted a patch to update linux-unwind for kernel

Index: libgcc/ChangeLog
===================================================================
--- libgcc/ChangeLog    (revision 266199)
+++ libgcc/ChangeLog    (working copy)
@@ -1,5 +1,11 @@
 2018-11-15  Xianmiao Qu  <xianmiao...@c-sky.com>
 
+       * config/csky/linux-unwind.h (sc_pt_regs): Update for kernel. 
+       (sc_pt_regs_lr): Update for kernel.
+       (sc_pt_regs_tls): Update for kernel.
+
+2018-11-15  Xianmiao Qu  <xianmiao...@c-sky.com>
+
        * config/csky/linux-unwind.h: Fix coding style.
 
 2018-11-13  Xianmiao Qu  <xianmiao...@c-sky.com>
Index: libgcc/config/csky/linux-unwind.h
===================================================================
--- libgcc/config/csky/linux-unwind.h   (revision 266199)
+++ libgcc/config/csky/linux-unwind.h   (working copy)
@@ -47,9 +47,9 @@
 #define MOVI_R7_139_V2_PART0 0xea07
 #define MOVI_R7_139_V2_PART1 139
 
-#define sc_pt_regs(x) (sc->sc_##x)
-#define sc_pt_regs_lr (sc->sc_r15)
-#define sc_pt_regs_tls(x) (sc->sc_exregs[15])
+#define sc_pt_regs(x) (sc->sc_pt_regs.x)
+#define sc_pt_regs_lr (sc->sc_pt_regs.lr)
+#define sc_pt_regs_tls(x) sc_pt_regs(x)
 
 #define MD_FALLBACK_FRAME_STATE_FOR csky_fallback_frame_state



Reply via email to