From: John David Anglin Date: Thu, 29 Dec 2005 19:37:51 +0000 (+0000) Subject: s-osinte-linux-hppa.ads: Correct alignment of atomic_lock_t. X-Git-Tag: releases/gcc-4.2.0~5115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4580c9a6499ed989c4289e217ed5bdb8526114a1;p=thirdparty%2Fgcc.git s-osinte-linux-hppa.ads: Correct alignment of atomic_lock_t. * s-osinte-linux-hppa.ads: Correct alignment of atomic_lock_t. From-SVN: r109150 --- diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index b8ec9dd852d7..8257e4265f21 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,7 @@ +2005-12-28 John David Anglin + + * s-osinte-linux-hppa.ads: Correct alignment of atomic_lock_t. + 2005-12-12 Arnaud Charlet * Makefile.in: Remove dummy setting of GCC_FOR_TARGET, no longer diff --git a/gcc/ada/s-osinte-linux-hppa.ads b/gcc/ada/s-osinte-linux-hppa.ads index a04c636f1e89..ec7efd2feae1 100644 --- a/gcc/ada/s-osinte-linux-hppa.ads +++ b/gcc/ada/s-osinte-linux-hppa.ads @@ -508,7 +508,7 @@ private lock : lock_array; end record; pragma Convention (C, atomic_lock_t); - for atomic_lock_t'Alignment use 8 * 16; + for atomic_lock_t'Alignment use 16; type struct_pthread_fast_lock is record spinlock : atomic_lock_t;