From: Pierre-Marie de Rodat Date: Thu, 4 Jun 2015 10:38:17 +0000 (+0000) Subject: decl.c (gnat_to_gnu_entity): If processing a definition... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3e7e725b26b409c33aad9a94d747432f72e714a8;p=gcc.git decl.c (gnat_to_gnu_entity): If processing a definition... * gcc-interface/decl.c (gnat_to_gnu_entity) : If processing a definition, create definitions for padding types around return types. From-SVN: r224121 --- diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index a47a949895f..c71731f35a4 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,9 @@ +2015-06-04 Pierre-Marie de Rodat + + * gcc-interface/decl.c (gnat_to_gnu_entity) : If + processing a definition, create definitions for padding types + around return types. + 2015-06-03 Eric Botcazou * gcc-interface/utils.c (copy_type): Also set TYPE_CANONICAL. diff --git a/gcc/ada/gcc-interface/decl.c b/gcc/ada/gcc-interface/decl.c index dd2b06f9489..5eaab17b6e8 100644 --- a/gcc/ada/gcc-interface/decl.c +++ b/gcc/ada/gcc-interface/decl.c @@ -4252,7 +4252,8 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition) = maybe_pad_type (gnu_return_type, max_size (TYPE_SIZE (gnu_return_type), true), - 0, gnat_entity, false, false, false, true); + 0, gnat_entity, false, false, definition, + true); /* Declare it now since it will never be declared otherwise. This is necessary to ensure that its subtrees are properly