aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/gcc-interface
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2017-12-14 17:03:16 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2017-12-14 17:03:16 +0000
commit9df60a5d915668f6b25fae0b76996e6bfd79e38c (patch)
treec9c67232537cb4573931da8efbab3fe4fc445a49 /gcc/ada/gcc-interface
parent636f605cbf67b82baf3726d2e92607cd39004d37 (diff)
downloadgcc-9df60a5d915668f6b25fae0b76996e6bfd79e38c.zip
gcc-9df60a5d915668f6b25fae0b76996e6bfd79e38c.tar.gz
gcc-9df60a5d915668f6b25fae0b76996e6bfd79e38c.tar.bz2
decl.c (gnat_to_gnu_field): Do not set the alignment of the enclosing record type if it is not already set.
* gcc-interface/decl.c (gnat_to_gnu_field): Do not set the alignment of the enclosing record type if it is not already set. From-SVN: r255645
Diffstat (limited to 'gcc/ada/gcc-interface')
-rw-r--r--gcc/ada/gcc-interface/decl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ada/gcc-interface/decl.c b/gcc/ada/gcc-interface/decl.c
index f2da070..b014e68 100644
--- a/gcc/ada/gcc-interface/decl.c
+++ b/gcc/ada/gcc-interface/decl.c
@@ -6890,7 +6890,8 @@ gnat_to_gnu_field (Entity_Id gnat_field, tree gnu_record_type, int packed,
{
const unsigned int type_align = TYPE_ALIGN (gnu_field_type);
- if (TYPE_ALIGN (gnu_record_type) < type_align)
+ if (TYPE_ALIGN (gnu_record_type)
+ && TYPE_ALIGN (gnu_record_type) < type_align)
SET_TYPE_ALIGN (gnu_record_type, type_align);
/* If the position is not a multiple of the alignment of the type,