mirror of git://gcc.gnu.org/git/gcc.git
gimplify.c (gimplify_decl_expr): For a TYPE_DECL, also gimplify the DECL_ORIGINAL_TYPE if it is present.
* gimplify.c (gimplify_decl_expr): For a TYPE_DECL, also gimplify the DECL_ORIGINAL_TYPE if it is present. From-SVN: r187369
This commit is contained in:
parent
b5ba5188a5
commit
d400d17ef0
|
@ -1,3 +1,8 @@
|
|||
2012-05-10 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* gimplify.c (gimplify_decl_expr): For a TYPE_DECL, also gimplify the
|
||||
DECL_ORIGINAL_TYPE if it is present.
|
||||
|
||||
2012-05-10 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR target/53120
|
||||
|
|
|
@ -1441,6 +1441,13 @@ gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
|
|||
&& !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
|
||||
gimplify_type_sizes (TREE_TYPE (decl), seq_p);
|
||||
|
||||
/* ??? DECL_ORIGINAL_TYPE is streamed for LTO so it needs to be gimplified
|
||||
in case its size expressions contain problematic nodes like CALL_EXPR. */
|
||||
if (TREE_CODE (decl) == TYPE_DECL
|
||||
&& DECL_ORIGINAL_TYPE (decl)
|
||||
&& !TYPE_SIZES_GIMPLIFIED (DECL_ORIGINAL_TYPE (decl)))
|
||||
gimplify_type_sizes (DECL_ORIGINAL_TYPE (decl), seq_p);
|
||||
|
||||
if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
|
||||
{
|
||||
tree init = DECL_INITIAL (decl);
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2012-05-10 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* gnat.dg/lto11.ad[sb]: New test.
|
||||
|
||||
2012-05-09 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
PR target/52908
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
-- { dg-do compile }
|
||||
-- { dg-options "-flto" { target lto } }
|
||||
|
||||
with Ada.Streams; use Ada.Streams;
|
||||
|
||||
package body Lto11 is
|
||||
|
||||
procedure Write
|
||||
(S : not null access Root_Stream_Type'Class;
|
||||
V : Vector)
|
||||
is
|
||||
subtype M_SEA is Stream_Element_Array (1 .. V'Size / Stream_Element'Size);
|
||||
Bytes : M_SEA;
|
||||
for Bytes'Address use V'Address;
|
||||
pragma Import (Ada, Bytes);
|
||||
begin
|
||||
Ada.Streams.Write (S.all, Bytes);
|
||||
end;
|
||||
|
||||
end Lto11;
|
|
@ -0,0 +1,9 @@
|
|||
with Ada.Streams; use Ada.Streams;
|
||||
|
||||
package Lto11 is
|
||||
|
||||
type Vector is array (Positive range <>) of Float;
|
||||
|
||||
procedure Write (S : not null access Root_Stream_Type'Class; V : Vector);
|
||||
|
||||
end Lto11;
|
Loading…
Reference in New Issue