diff options
author | Jan Hubicka <jh@suse.cz> | 2005-05-20 10:05:07 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2005-05-20 08:05:07 +0000 |
commit | 776b966eb01b073459d6b05f67447aec960f4759 (patch) | |
tree | 9397a967816c2326cbfcda0bce6cc733158a0d3d | |
parent | bcb28cf50697390db7cae0719666c38ecb8210bd (diff) | |
download | gcc-776b966eb01b073459d6b05f67447aec960f4759.zip gcc-776b966eb01b073459d6b05f67447aec960f4759.tar.gz gcc-776b966eb01b073459d6b05f67447aec960f4759.tar.bz2 |
* cgraphunit.c (cgraph_expand_function): Force function being lowered.
From-SVN: r100009
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cgraphunit.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ddd133..8397826 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-05-20 Jan Hubicka <jh@suse.cz> + + * cgraphunit.c (cgraph_expand_function): Force function being lowered. + 2005-05-19 Richard Henderson <rth@redhat.com> * config/alpha/alpha.c (emit_unlikely_jump, emit_load_locked, diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 14eb46b..1524805 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); |