diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-20 08:05:07 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-20 08:05:07 +0000 |
commit | f8deefc147bdac2825c48c22c45de1c796c89a9f (patch) | |
tree | 9397a967816c2326cbfcda0bce6cc733158a0d3d /gcc/cgraphunit.c | |
parent | aa73b18ff13b5f1f6287578e04b52b5b8bfb8464 (diff) | |
download | gcc-f8deefc147bdac2825c48c22c45de1c796c89a9f.tar.gz |
* cgraphunit.c (cgraph_expand_function): Force function being lowered.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100009 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 14eb46b22c0..1524805844f 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -968,6 +968,8 @@ cgraph_expand_function (struct cgraph_node *node) if (flag_unit_at_a_time) announce_function (decl); + cgraph_lower_function (node); + /* Generate RTL for the body of DECL. */ lang_hooks.callgraph.expand_function (decl); |