diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-13 07:23:59 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-13 07:23:59 +0000 |
commit | 3669a8aab7c156405b267642a3fcaa817632ce19 (patch) | |
tree | 1649ca6e0269eb34afd872d7e91af227b93f80ba /gcc/except.c | |
parent | 52a7bd0ee685432e163c9b60c25cedcf7d981d26 (diff) | |
download | gcc-3669a8aab7c156405b267642a3fcaa817632ce19.tar.gz |
2006-06-13 Richard Guenther <rguenther@suse.de>
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
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |