Module Name:    src
Committed By:   christos
Date:           Thu Oct  3 21:08:49 UTC 2013

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

Log Message:
fix sparc


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/gpl3/gdb/dist/gdb/sparcnbsd-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/sparcnbsd-nat.c
diff -u src/external/gpl3/gdb/dist/gdb/sparcnbsd-nat.c:1.4 src/external/gpl3/gdb/dist/gdb/sparcnbsd-nat.c:1.5
--- src/external/gpl3/gdb/dist/gdb/sparcnbsd-nat.c:1.4	Thu Oct  3 14:30:44 2013
+++ src/external/gpl3/gdb/dist/gdb/sparcnbsd-nat.c	Thu Oct  3 17:08:49 2013
@@ -51,7 +51,7 @@ supply_gregset (struct regcache *regcach
 void
 supply_fpregset (struct regcache *regcache, const fpregset_t *fpregs)
 {
-  sparc_supply_fpregset (regcache, -1, fpregs);
+  sparc_supply_fpregset (sparc_fpregset, regcache, -1, fpregs);
 }
 
 void
@@ -63,7 +63,7 @@ fill_gregset (const struct regcache *reg
 void
 fill_fpregset (const struct regcache *regcache, fpregset_t *fpregs, int regnum)
 {
-  sparc_collect_fpregset (regcache, regnum, fpregs);
+  sparc_collect_fpregset (sparc_fpregset, regcache, regnum, fpregs);
 }
 
 static int

Reply via email to