Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
9b809695
Commit
9b809695
authored
Sep 27, 2010
by
Richard Henderson
Committed by
Richard Henderson
Sep 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (dwarf2out_cfi_label): Use ASM_OUTPUT_DEBUG_LABEL.
From-SVN: r164670
parent
86dfbd58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/dwarf2out.c
+3
-2
No files found.
gcc/ChangeLog
View file @
9b809695
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
gcc/dwarf2out.c
View file @
9b809695
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment