diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-05-15 21:26:09 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-05-15 21:26:40 +0000 |
commit | cc03b29695152a0223c2f34e147181702e1d3e61 (patch) | |
tree | 59084fb7d67067901e5683a666c1cad60338d9ae /sysdeps | |
parent | f16af742175c8bdf536ebd97bf9fb33db925f02e (diff) | |
download | glibc-cc03b29695152a0223c2f34e147181702e1d3e61.tar.gz |
Avoid plain "aligned" attributes in installed headers.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/sys/procfs.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/sys/ucontext.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h b/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h index 146b28ed40..dc41bdf331 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1999, 2002, 2006 Free Software Foundation, Inc. +/* Copyright (C) 1996-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 @@ -52,7 +52,7 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; /* Altivec registers */ typedef struct { unsigned int u[4]; -} __attribute__ ((aligned (16))) elf_vrreg_t; +} __attribute__ ((__aligned__ (16))) elf_vrreg_t; typedef elf_vrreg_t elf_vrregset_t[ELF_NVRREG]; #endif diff --git a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h index 5dd0234613..e66854d9db 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. +/* Copyright (C) 2000-2012 Free Software Foundation, Inc. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). This file is part of the GNU C Library. @@ -33,7 +33,7 @@ typedef struct { unsigned long mask; unsigned long addr; -} __attribute__ ((aligned(8))) __psw_t; +} __attribute__ ((__aligned__(8))) __psw_t; /* Type for a general-purpose register. */ typedef unsigned long greg_t; @@ -49,7 +49,7 @@ typedef unsigned long greg_t; # define NGREG 36 #endif /* Must match kernels psw_t alignment. */ -typedef greg_t gregset_t[NGREG] __attribute__ ((aligned(8))); +typedef greg_t gregset_t[NGREG] __attribute__ ((__aligned__(8))); typedef union { |