From 3669a8aab7c156405b267642a3fcaa817632ce19 Mon Sep 17 00:00:00 2001 From: rguenth Date: Tue, 13 Jun 2006 07:23:59 +0000 Subject: [PATCH] 2006-06-13 Richard Guenther PR middle-end/27536 * except.c (output_ttype): Expand type with EXPAND_INITIALIZER. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114601 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/except.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7798dd053d8..deaac82e1eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2006-06-13 Richard Guenther + PR middle-end/27536 + * except.c (output_ttype): Expand type with EXPAND_INITIALIZER. + +2006-06-13 Richard Guenther + PR tree-optimization/27830 * tree-inline.c (copy_body_r): For copying the operand of an ADDR_EXPR make sure to fold &* afterwards. diff --git a/gcc/except.c b/gcc/except.c index be563e496a4..6fb454e8543 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -3588,7 +3588,7 @@ output_ttype (tree type, int tt_format, int tt_format_size) struct cgraph_varpool_node *node; type = lookup_type_for_runtime (type); - value = expand_normal (type); + value = expand_expr (type, NULL_RTX, VOIDmode, EXPAND_INITIALIZER); /* Let cgraph know that the rtti decl is used. Not all of the paths below go through assemble_integer, which would take -- 2.11.0