GNU C Library master sources branch master updated. glibc-2.16-ports-merge-743-gc3151ad
jsm28@sourceware.org
jsm28@sourceware.org
Wed Nov 21 16:42:00 GMT 2012
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 "GNU C Library master sources".
The branch, master has been updated
via c3151ad1004f97b8595449c8ed9af01c5d58906f (commit)
from 7e1be741255c40a2d71ea7c888eff39a3aaa32e9 (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 -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=c3151ad1004f97b8595449c8ed9af01c5d58906f
commit c3151ad1004f97b8595449c8ed9af01c5d58906f
Author: Joseph Myers <joseph@codesourcery.com>
Date: Wed Nov 21 16:41:57 2012 +0000
Cast to uintptr_t in MIPS jmpbuf-unwind.h.
diff --git a/ports/ChangeLog.mips b/ports/ChangeLog.mips
index 8c84869..5ef48f4 100644
--- a/ports/ChangeLog.mips
+++ b/ports/ChangeLog.mips
@@ -1,5 +1,8 @@
2012-11-21 Joseph Myers <joseph@codesourcery.com>
+ * sysdeps/mips/jmpbuf-unwind.h (_jmpbuf_sp): Cast regs[0].__sp to
+ uintptr_t.
+
* sysdeps/mips/sotruss-lib.c: New file.
2012-11-20 Joseph Myers <joseph@codesourcery.com>
diff --git a/ports/sysdeps/mips/jmpbuf-unwind.h b/ports/sysdeps/mips/jmpbuf-unwind.h
index ba174d6..355ca56 100644
--- a/ports/sysdeps/mips/jmpbuf-unwind.h
+++ b/ports/sysdeps/mips/jmpbuf-unwind.h
@@ -33,7 +33,7 @@
static inline uintptr_t __attribute__ ((unused))
_jmpbuf_sp (__jmp_buf regs)
{
- uintptr_t sp = regs[0].__sp;
+ uintptr_t sp = (uintptr_t) regs[0].__sp;
#ifdef PTR_DEMANGLE
PTR_DEMANGLE (sp);
#endif
-----------------------------------------------------------------------
Summary of changes:
ports/ChangeLog.mips | 3 +++
ports/sysdeps/mips/jmpbuf-unwind.h | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
hooks/post-receive
--
GNU C Library master sources
More information about the Glibc-cvs
mailing list