summaryrefslogtreecommitdiffstats
path: root/gcc/dwarf2out.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2010-09-27 21:29:46 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2010-09-27 21:29:46 +0000
commit2375c63d24a10083bf96a66beb190b80e0e0db06 (patch)
tree01225e96b45d6168db5df7e31799fa19e45c299d /gcc/dwarf2out.c
parent3aa7b555cf1afc5ce9980b41bdc473e609066675 (diff)
downloadppe42-gcc-2375c63d24a10083bf96a66beb190b80e0e0db06.tar.gz
ppe42-gcc-2375c63d24a10083bf96a66beb190b80e0e0db06.zip
* dwarf2out.c (dwarf2out_cfi_label): Use ASM_OUTPUT_DEBUG_LABEL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164670 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r--gcc/dwarf2out.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 900994d0bed..cb3a21f0e61 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -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;
OpenPOWER on IntegriCloud