public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Shut up -Wstrict-aliasing warnings with pthread_cleanup_push in g++ -fno-exceptions
@ 2007-11-20 22:36 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2007-11-20 22:36 UTC (permalink / raw)
  To: Ulrich Drepper; +Cc: Glibc hackers

Hi!

See https://bugzilla.redhat.com/show_bug.cgi?id=381411
g++ 4.1 and 4.2 -Wstrict-aliasing warnings is sometimes more verbose than it
should, struct __jmp_buf_tag has just forward decl and so g++ decides to
warn just in case.  The extra cast shuts this up and doesn't harm the code
(for obscure compilation mode which should never be really used with
pthread_cancel and the cleanup macros anyway).

2007-11-20  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/pthread/pthread.h (pthread_cleanup_push,
	pthread_cleanup_push_defer_np): Add extra (void *) cast to shut up
	g++ 4.1 and 4.2 -Wstrict-aliasing warnings.

--- libc/nptl/sysdeps/pthread/pthread.h.jj	2007-06-04 08:42:06.000000000 +0200
+++ libc/nptl/sysdeps/pthread/pthread.h	2007-11-20 23:28:21.000000000 +0100
@@ -638,7 +638,7 @@ __pthread_cleanup_routine (struct __pthr
     __pthread_unwind_buf_t __cancel_buf;				      \
     void (*__cancel_routine) (void *) = (routine);			      \
     void *__cancel_arg = (arg);						      \
-    int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *)		      \
+    int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) (void *)	      \
 				      __cancel_buf.__cancel_jmp_buf, 0);      \
     if (__builtin_expect (not_first_call, 0))				      \
       {									      \
@@ -672,7 +672,7 @@ extern void __pthread_unregister_cancel 
     __pthread_unwind_buf_t __cancel_buf;				      \
     void (*__cancel_routine) (void *) = (routine);			      \
     void *__cancel_arg = (arg);						      \
-    int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *)		      \
+    int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) (void *)	      \
 				      __cancel_buf.__cancel_jmp_buf, 0);      \
     if (__builtin_expect (not_first_call, 0))				      \
       {									      \


	Jakub

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-11-20 22:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-11-20 22:36 [PATCH] Shut up -Wstrict-aliasing warnings with pthread_cleanup_push in g++ -fno-exceptions Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).