diff options
author | Richard Guenther <rguenther@suse.de> | 2006-06-13 07:23:59 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2006-06-13 07:23:59 +0000 |
commit | cda5bf3902cfd5dc52866d3d6b0c1cadbd2441cc (patch) | |
tree | 1649ca6e0269eb34afd872d7e91af227b93f80ba /gcc/except.c | |
parent | 8e85fd14bf6df849e51fdfce711a794f93cb6bbb (diff) | |
download | gcc-cda5bf3902cfd5dc52866d3d6b0c1cadbd2441cc.zip gcc-cda5bf3902cfd5dc52866d3d6b0c1cadbd2441cc.tar.gz gcc-cda5bf3902cfd5dc52866d3d6b0c1cadbd2441cc.tar.bz2 |
re PR middle-end/27536 (-fsection-anchors breaks Ada)
2006-06-13 Richard Guenther <rguenther@suse.de>
PR middle-end/27536
* except.c (output_ttype): Expand type with EXPAND_INITIALIZER.
From-SVN: r114601
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 be563e4..6fb454e 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 |