about summary refs log tree commit diff
path: root/sysdeps/m68k
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2014-06-13 23:31:36 +0200
committerAndreas Schwab <schwab@linux-m68k.org>2014-06-13 23:32:13 +0200
commitf5d71e140d9a5adfc7f6c190032d6bdaa3c3a171 (patch)
treef5a693237958ce9c1756926fc2067d9347290881 /sysdeps/m68k
parent03ed7738e7e4d58b35bb6d5ca04f90640549d181 (diff)
downloadglibc-f5d71e140d9a5adfc7f6c190032d6bdaa3c3a171.tar.gz
glibc-f5d71e140d9a5adfc7f6c190032d6bdaa3c3a171.tar.xz
glibc-f5d71e140d9a5adfc7f6c190032d6bdaa3c3a171.zip
m68k: avoid pointer to integer conversion warning
Diffstat (limited to 'sysdeps/m68k')
-rw-r--r--sysdeps/m68k/jmpbuf-unwind.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/m68k/jmpbuf-unwind.h b/sysdeps/m68k/jmpbuf-unwind.h
index 8739abbf95..c0c62bc442 100644
--- a/sysdeps/m68k/jmpbuf-unwind.h
+++ b/sysdeps/m68k/jmpbuf-unwind.h
@@ -23,7 +23,7 @@
 /* Test if longjmp to JMPBUF would unwind the frame
    containing a local variable at ADDRESS.  */
 #define _JMPBUF_UNWINDS(jmpbuf, address, demangle)		\
-  ((void *) (address) < (void *) demangle ((jmpbuf)->__sp))
+  ((void *) (address) < (void *) demangle ((uintptr_t) (jmpbuf)->__sp))
 
 #define _JMPBUF_CFA_UNWINDS_ADJ(_jmpbuf, _context, _adj) \
   _JMPBUF_UNWINDS_ADJ (_jmpbuf, (void *) _Unwind_GetCFA (_context), _adj)
@@ -31,7 +31,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