diff options
author | Martin v. Löwis <loewis@informatik.hu-berlin.de> | 2000-02-29 23:33:50 +0000 |
---|---|---|
committer | Martin v. Löwis <loewis@gcc.gnu.org> | 2000-02-29 23:33:50 +0000 |
commit | 00262c8ac76a4805ab153a7ed124fa671fc97fc6 (patch) | |
tree | 3761b362baeb6739f75a4be6a85810c78908ab10 /gcc/final.c | |
parent | bf44874ee34bf00934f59c3b014d757da0e79523 (diff) | |
download | gcc-00262c8ac76a4805ab153a7ed124fa671fc97fc6.zip gcc-00262c8ac76a4805ab153a7ed124fa671fc97fc6.tar.gz gcc-00262c8ac76a4805ab153a7ed124fa671fc97fc6.tar.bz2 |
c-decl.c (current_function_decl): Move to toplev.c.
* c-decl.c (current_function_decl): Move to toplev.c.
(init_decl_processing): Don't add current_function_decl as a ggc
root here.
* dbxout.c (dbxout_symbol): Change return type to int.
(dbxout_symbol_location, dbxout_syms): Likewise.
(dbxout_block): Don't emit LBRAC/RBRAC pairs for blocks without
any locals. Use current_function_func_begin_label if set.
* dbxout.h (dbxout_symbol, dbxout_syms): Change return type.
* dwarf2out.c (dwarf2out_begin_prologue): Set
current_function_func_begin_label.
* final.c (final_start_function): Reset it.
* toplev.c (current_function_decl): Define it here.
(current_function_func_begin_label): New variable.
(main): Add both as ggc roots.
* tree.h (current_function_func_begin_label): Declare.
* ch/decl.c (current_function_decl): Move to toplev.c.
* cp/decl.c (current_function_decl): Move to toplev.c.
* f/com.c (current_function_decl): Move to toplev.c.
* java/decl.c (current_function_decl): Move to toplev.c.
From-SVN: r32268
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/final.c b/gcc/final.c index 1346b37..948ecd3 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1599,6 +1599,8 @@ final_start_function (first, file, optimize) /* Output DWARF definition of the function. */ if (dwarf2out_do_frame ()) dwarf2out_begin_prologue (); + else + current_function_func_begin_label = 0; #endif /* For SDB and XCOFF, the function beginning must be marked between |