diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-03-03 19:48:46 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-03-03 19:48:46 -0500 |
commit | fcd7f76b289ddadbb67057154547d570b94f2b23 (patch) | |
tree | 29b58916ce9e193f2b31a39bfb2eb5cdae4dfcef /gcc/varasm.c | |
parent | 6db201439a6635a374ec572561d961c9cf734ee2 (diff) | |
download | gcc-fcd7f76b289ddadbb67057154547d570b94f2b23.zip gcc-fcd7f76b289ddadbb67057154547d570b94f2b23.tar.gz gcc-fcd7f76b289ddadbb67057154547d570b94f2b23.tar.bz2 |
dwarf2out.c (dwarf2out_frame_debug): Add cast to silence warning.
* dwarf2out.c (dwarf2out_frame_debug): Add cast to silence warning.
(dwarf2out_decl): Functions can now have DECL_IGNORED_P.
(gen_decl_die): Likewise.
* dwarfout.c (dwarfout_file_scope_decl): Likewise.
(output_decl): Likewise.
* varasm.c (make_function_rtl): If we change the name used in the
rtl, update DECL_ASSEMBLER_NAME accordingly.
(make_decl_rtl): Likewise.
* toplev.c (rest_of_compilation): Tweak formatting.
* toplev.c (rest_of_compilation): find_loop_tree_blocks before
remove_unnecessary_notes.
(debug_ignore_block): New fn.
* toplev.h: Declare it.
* emit-rtl.c (remove_unncessary_notes): Call it.
* dwarf2out.c (dwarf2out_ignore_block): New fn.
* dwarf2out.h: Declare it.
* final.c (final_start_function): Don't call remove_unnecessary_notes
if we did insn scheduling.
From-SVN: r32320
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index c84affc..751ce82 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -553,6 +553,7 @@ make_function_rtl (decl) if (DECL_RTL (decl) == 0) { + DECL_ASSEMBLER_NAME (decl) = get_identifier (name); DECL_RTL (decl) = gen_rtx_MEM (DECL_MODE (decl), gen_rtx_SYMBOL_REF (Pmode, name)); @@ -792,6 +793,7 @@ make_decl_rtl (decl, asmspec, top_level) name = new_name; } + DECL_ASSEMBLER_NAME (decl) = get_identifier (name); DECL_RTL (decl) = gen_rtx_MEM (DECL_MODE (decl), gen_rtx_SYMBOL_REF (Pmode, name)); MEM_ALIAS_SET (DECL_RTL (decl)) = get_alias_set (decl); |