MicroBlaze: Fix integer-pointer conversion warning
authorDavid Holsgrove <david.holsgrove@xilinx.com>
Wed, 24 Dec 2014 01:55:49 +0000 (11:55 +1000)
committerDavid Holsgrove <david.holsgrove@xilinx.com>
Fri, 9 Jan 2015 04:30:11 +0000 (14:30 +1000)
2015-01-06  David Holsgrove <david.holsgrove@xilinx.com>

    * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Use NULL instead
      of 0.

Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
ChangeLog
sysdeps/microblaze/nptl/tls.h

index 0ad34c3..834e23c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-01-09  David Holsgrove  <david.holsgrove@xilinx.com>
+
+       * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Use NULL instead
+       of 0.
+
 2015-01-08  Roland McGrath  <roland@hack.frob.com>
 
        * sysdeps/pthread/timer_routines.c: Fix <pthreadP.h> include to use
index 5b13c82..fb4a71a 100644 (file)
@@ -99,7 +99,7 @@ static inline void *__microblaze_get_thread_area (void)
 /* Code to initially initialize the thread pointer.
    r21 is reserved for thread pointer.  */
 # define TLS_INIT_TP(tcbp) \
-  ({ __asm __volatile ("or r21,r0,%0" : : "r" ((void *)tcbp)); 0; })
+  ({ __asm __volatile ("or r21,r0,%0" : : "r" ((void *)tcbp)); NULL; })
 
 # define TLS_DEFINE_INIT_TP(tp, pd) void *tp = (pd) + 1