Commit 9b809695 by Richard Henderson Committed by Richard Henderson

* dwarf2out.c (dwarf2out_cfi_label): Use ASM_OUTPUT_DEBUG_LABEL.

From-SVN: r164670
parent 86dfbd58
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> 2010-09-27 Hans-Peter Nilsson <hp@axis.com>
* emit-rtl.c (reorder_insns_nobb) [ENABLE_CHECKING]: Sanity-check * emit-rtl.c (reorder_insns_nobb) [ENABLE_CHECKING]: Sanity-check
...@@ -790,8 +790,9 @@ dwarf2out_cfi_label (bool force) ...@@ -790,8 +790,9 @@ dwarf2out_cfi_label (bool force)
} }
else else
{ {
ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", dwarf2out_cfi_label_num++); int num = dwarf2out_cfi_label_num++;
ASM_OUTPUT_LABEL (asm_out_file, label); ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", num);
ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LCFI", num);
} }
return label; return label;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment