diff options
author | Jim Wilson <wilson@redhat.com> | 2000-11-01 00:20:34 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2000-10-31 16:20:34 -0800 |
commit | 8215347ec3d842c217c911c23d01540da7a8fa7c (patch) | |
tree | f74b9a4d296a145ceee676bb737c29f0db6b96e5 /gcc/final.c | |
parent | 4547105f643233da44000b0c7f0a2f5b83548f28 (diff) | |
download | gcc-8215347ec3d842c217c911c23d01540da7a8fa7c.zip gcc-8215347ec3d842c217c911c23d01540da7a8fa7c.tar.gz gcc-8215347ec3d842c217c911c23d01540da7a8fa7c.tar.bz2 |
Make ia64 port use tags instead of labels for debug info labels.
* defaults.h (ASM_OUTPUT_DEBUG_LABEL): New.
* tm.texi (ASM_OUTPUT_DEBUG_LABEL): Document.
* dwarf2out.c (dwarf2out_begin_block): Use ASM_OUTPUT_DEBUG_LABEL
instead of ASM_OUTPUT_INTERNAL_LABEL.
(dwarf2out_end_block, dwarf2out_label): Likewise.
* final.c (final_scan_insn, case NOTE_INSN_DELETED_LABEL): Likewise
* config/ia64/ia64.h (ASM_OUTPUT_DEBUG_LABEL): Define.
From-SVN: r37174
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c index 0e22b06..ae2864ae 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -2270,7 +2270,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) referenced (in the form of having its address taken. */ /* ??? Figure out how not to do this unconditionally. This interferes with bundling on LIW targets. */ - ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn)); + ASM_OUTPUT_DEBUG_LABEL (file, "L", CODE_LABEL_NUMBER (insn)); if (debug_info_level == DINFO_LEVEL_NORMAL || debug_info_level == DINFO_LEVEL_VERBOSE) |