* dwarf2out.c (dwarf2out_cfi_label): Use ASM_OUTPUT_DEBUG_LABEL.

From-SVN: r164670
This commit is contained in:
Richard Henderson 2010-09-27 14:29:46 -07:00 committed by Richard Henderson
parent 86dfbd58cf
commit 9b809695ff
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-09-27 Richard Henderson <rth@redhat.com>
* dwarf2out.c (dwarf2out_cfi_label): Use ASM_OUTPUT_DEBUG_LABEL.
2010-09-27 Hans-Peter Nilsson <hp@axis.com>
* emit-rtl.c (reorder_insns_nobb) [ENABLE_CHECKING]: Sanity-check

View File

@ -790,8 +790,9 @@ dwarf2out_cfi_label (bool force)
}
else
{
ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", dwarf2out_cfi_label_num++);
ASM_OUTPUT_LABEL (asm_out_file, label);
int num = dwarf2out_cfi_label_num++;
ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", num);
ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LCFI", num);
}
return label;