public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* Fix ia64/sys/ucontext.h für g++ 3.5
@ 2004-09-01  9:32 Andreas Schwab
  2004-09-01 17:25 ` Richard Henderson
  2004-09-02  3:40 ` Ulrich Drepper
  0 siblings, 2 replies; 7+ messages in thread
From: Andreas Schwab @ 2004-09-01  9:32 UTC (permalink / raw)
  To: libc-hacker

G++ 3.5 no longer treats _SC_GR0_OFFSET as an integral constant expression.

2004-09-01  Andreas Schwab  <schwab@suse.de>

	* sysdeps/unix/sysv/linux/ia64/sys/ucontext.h [g++ >= 3.5]: Use
	__builtin_offsetof.

--- sysdeps/unix/sysv/linux/ia64/sys/ucontext.h.~1.7.~	2003-01-16 11:33:48.000000000 +0100
+++ sysdeps/unix/sysv/linux/ia64/sys/ucontext.h	2004-09-01 11:26:14.058657019 +0200
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
+/* Copyright (C) 1998, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -32,7 +32,10 @@
 
 typedef struct sigcontext mcontext_t;
 
-#ifdef __GNUC__
+#if defined __cplusplus && __GNUC_PREREQ (3, 5)
+# define _SC_GR0_OFFSET	\
+	__builtin_offsetof (struct sigcontext, sc_gr[0])
+#elif defined __GNUC__
 # define _SC_GR0_OFFSET	\
 	(((char *) &((struct sigcontext *) 0)->sc_gr[0]) - (char *) 0)
 #else

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Maxfeldstraße 5, 90409 Nürnberg, Germany
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2004-09-04  1:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-01  9:32 Fix ia64/sys/ucontext.h für g++ 3.5 Andreas Schwab
2004-09-01 17:25 ` Richard Henderson
2004-09-01 20:56   ` Andreas Schwab
2004-09-01 21:07     ` Ulrich Drepper
2004-09-01 21:11       ` Jakub Jelinek
2004-09-04  1:58         ` Richard Henderson
2004-09-02  3:40 ` Ulrich Drepper

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).