From: Jan Hubicka Date: Fri, 20 May 2005 08:05:07 +0000 (+0200) Subject: * cgraphunit.c (cgraph_expand_function): Force function being lowered. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=776b966eb01b073459d6b05f67447aec960f4759;p=gcc.git * cgraphunit.c (cgraph_expand_function): Force function being lowered. From-SVN: r100009 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ddd13334b1..8397826cb64 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-05-20 Jan Hubicka + + * cgraphunit.c (cgraph_expand_function): Force function being lowered. + 2005-05-19 Richard Henderson * config/alpha/alpha.c (emit_unlikely_jump, emit_load_locked, 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);