Module Name:    src
Committed By:   christos
Date:           Mon Aug 17 10:06:50 UTC 2015

Modified Files:
        src/external/gpl3/gdb/dist/gdb: sparc64nbsd-nat.c

Log Message:
fix sparc64


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c
diff -u src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c:1.8 src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c:1.9
--- src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c:1.8	Sun Aug 16 05:58:29 2015
+++ src/external/gpl3/gdb/dist/gdb/sparc64nbsd-nat.c	Mon Aug 17 06:06:50 2015
@@ -141,25 +141,25 @@ sparc64nbsd_fpregset_supplies_p (struct 
 void
 supply_gregset (struct regcache *regcache, const gregset_t *gregs)
 {
-  sparc64nbsd_supply_gregset (sparc_gregset, regcache, -1, gregs);
+  sparc64nbsd_supply_gregset (sparc_gregmap, regcache, -1, gregs);
 }
 
 void
 supply_fpregset (struct regcache *regcache, const fpregset_t *fpregs)
 {
-  sparc64nbsd_supply_fpregset (sparc_fpregset, regcache, -1, fpregs);
+  sparc64nbsd_supply_fpregset (sparc_fpregmap, regcache, -1, fpregs);
 }
 
 void
 fill_gregset (const struct regcache *regcache, gregset_t *gregs, int regnum)
 {
-  sparc64nbsd_collect_gregset (sparc_gregset, regcache, regnum, gregs);
+  sparc64nbsd_collect_gregset (sparc_gregmap, regcache, regnum, gregs);
 }
 
 void
 fill_fpregset (const struct regcache *regcache, fpregset_t *fpregs, int regnum)
 {
-  sparc64nbsd_collect_fpregset (sparc_fpregset, regcache, regnum, fpregs);
+  sparc64nbsd_collect_fpregset (sparc_fpregmap, regcache, regnum, fpregs);
 }
 /* Support for debugging kernel virtual memory images.  */
 

Reply via email to