diff options
author | Geoffrey Keating <geoffk@apple.com> | 2004-09-10 19:03:13 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2004-09-10 19:03:13 +0000 |
commit | 375d2edc9f376bd6bb0e102075744664edb0c6c3 (patch) | |
tree | 1e94e6ae42e1b69753445c8709d3b5658b924507 /gcc/toplev.c | |
parent | c383c15f2961771877e363073e38ef371405f0dc (diff) | |
download | gcc-375d2edc9f376bd6bb0e102075744664edb0c6c3.zip gcc-375d2edc9f376bd6bb0e102075744664edb0c6c3.tar.gz gcc-375d2edc9f376bd6bb0e102075744664edb0c6c3.tar.bz2 |
dbxout.c (dbxout_block): Update for current_function_func_begin_label a string.
* dbxout.c (dbxout_block): Update for
current_function_func_begin_label a string.
* dwarf2out.c (dwarf2out_begin_prologue): Likewise.
* except.c (dw2_output_call_site_table): Likewise.
* toplev.c (current_function_func_begin_label): Likewise.
* tree.h (current_function_func_begin_label): Likewise.
* config/rs6000/linux64.h (DBX_OUTPUT_BRAC): Likewise.
From-SVN: r87317
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 79094e2..bf7ae20 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -220,9 +220,9 @@ int optimize_size = 0; or 0 if between functions. */ tree current_function_decl; -/* Set to the FUNC_BEGIN label of the current function, or NULL_TREE +/* Set to the FUNC_BEGIN label of the current function, or NULL if none. */ -tree current_function_func_begin_label; +const char * current_function_func_begin_label; /* Temporarily suppress certain warnings. This is set while reading code from a system header file. */ |