diff options
author | Richard Henderson <rth@redhat.com> | 2002-01-05 19:51:13 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-01-05 19:51:13 -0800 |
commit | c28abdf00d60460c4f7e27edc7deb099ae91e8c1 (patch) | |
tree | b5435975138444886ee3c592973a8b7f20046641 /gcc/c-decl.c | |
parent | ec6d4fa60cd144a5e5cd1c3bc5e38f630432fef5 (diff) | |
download | gcc-c28abdf00d60460c4f7e27edc7deb099ae91e8c1.zip gcc-c28abdf00d60460c4f7e27edc7deb099ae91e8c1.tar.gz gcc-c28abdf00d60460c4f7e27edc7deb099ae91e8c1.tar.bz2 |
c-decl.c (c_expand_body): Don't call outlining_inline_function.
* c-decl.c (c_expand_body): Don't call outlining_inline_function.
* integrate.c (output_inline_function): Likewise.
* toplev.c (rest_of_compilation): Do it here instead. Move call
to remove_unnecessary_notes after emitting abstract instance.
Force an emitted nested function to have its parent emited as well.
* dwarf2out.c (loc_descriptor_from_tree): Read mode after checking
for null.
(rtl_for_decl_location): Do not look at reload data structures
before reload has run.
* semantics.c (expand_body): Revert last change.
From-SVN: r48572
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index eb29b17..d6e8ac3 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -6947,11 +6947,6 @@ c_expand_body (fndecl, nested_p, can_defer_p) timevar_push (TV_EXPAND); - if (DECL_INLINE (fndecl)) - /* Do any preparation such as emitting abstract debug info for the - inline before it gets mangled by optimization. */ - (*debug_hooks->outlining_inline_function) (fndecl); - if (nested_p) { /* Make sure that we will evaluate variable-sized types involved |