* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
(PTR_MANGLE): Fix cast.
This commit is contained in:
parent
a6811b4071
commit
04a8b3013f
|
@ -1,5 +1,8 @@
|
||||||
2006-01-10 Roland McGrath <roland@redhat.com>
|
2006-01-10 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
|
||||||
|
(PTR_MANGLE): Fix cast.
|
||||||
|
|
||||||
* timezone/test-tz.c: Revert last change, updating to match
|
* timezone/test-tz.c: Revert last change, updating to match
|
||||||
tzdata2005r definition of "MST".
|
tzdata2005r definition of "MST".
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1992,1997,1998,1999,2000,2001,2002,2003,2004,2005
|
/* Copyright (C) 1992,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
|
@ -303,7 +303,7 @@
|
||||||
# define PTR_DEMANGLE2(reg, tmpreg) PTR_MANGLE2 (reg, tmpreg)
|
# define PTR_DEMANGLE2(reg, tmpreg) PTR_MANGLE2 (reg, tmpreg)
|
||||||
# else
|
# else
|
||||||
# define PTR_MANGLE(var) \
|
# define PTR_MANGLE(var) \
|
||||||
(var) = (void *) ((uintptr_t) (var) ^ THREAD_GET_POINTER_GUARD ())
|
(var) = (__typeof (var)) ((uintptr_t) (var) ^ THREAD_GET_POINTER_GUARD ())
|
||||||
# define PTR_DEMANGLE(var) PTR_MANGLE (var)
|
# define PTR_DEMANGLE(var) PTR_MANGLE (var)
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue