ia64: ucontext.h: drop __cplusplus
authorMike Frysinger <vapier@gentoo.org>
Tue, 17 Apr 2012 02:45:14 +0000 (22:45 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sat, 28 Apr 2012 03:10:28 +0000 (23:10 -0400)
Building a lot of glibc files trigger warnings like so:
.../ucontext.h:52:25: warning: variably modified '_pad' at file scope

The ia64 header protects the use of __builtin_offsetof by a C++
compiler, but this builtin works just fine with C compilers, so
allow it to be used there too.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
ChangeLog.ia64
sysdeps/unix/sysv/linux/ia64/sys/ucontext.h

index fea8582..803a248 100644 (file)
@@ -1,5 +1,10 @@
 2012-04-27  Mike Frysinger  <vapier@gentoo.org>
 
+       * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h: Delete __cplusplus
+       define check.
+
+2012-04-27  Mike Frysinger  <vapier@gentoo.org>
+
        * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
        (pthread_attr_t): Change union tag to pthread_attr_t.  Only define
        typedef if not already defined.
index 8525007..e1fa8c6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2012 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
@@ -31,7 +31,7 @@
 
 typedef struct sigcontext mcontext_t;
 
-#if defined __cplusplus && __GNUC_PREREQ (3, 5)
+#if __GNUC_PREREQ (3, 5)
 # define _SC_GR0_OFFSET        \
        __builtin_offsetof (struct sigcontext, sc_gr[0])
 #elif defined __GNUC__