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
4a22dcdd
Commit
4a22dcdd
authored
Feb 21, 2005
by
Ulrich Weigand
Committed by
Ulrich Weigand
Feb 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dbxout.c (dbxout_function_end): Emit Lscope label always.
From-SVN: r95326
parent
5dd90688
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
9 deletions
+13
-9
gcc/ChangeLog
+4
-0
gcc/dbxout.c
+9
-9
No files found.
gcc/ChangeLog
View file @
4a22dcdd
2005-02-21 Ulrich Weigand <uweigand@de.ibm.com>
* dbxout.c (dbxout_function_end): Emit Lscope label always.
2005-02-21 Richard Guenther <rguenth@gcc.gnu.org>
2005-02-21 Richard Guenther <rguenth@gcc.gnu.org>
PR bootstrap/13770
PR bootstrap/13770
...
...
gcc/dbxout.c
View file @
4a22dcdd
...
@@ -907,15 +907,6 @@ dbxout_function_end (tree decl)
...
@@ -907,15 +907,6 @@ dbxout_function_end (tree decl)
{
{
char
lscope_label_name
[
100
];
char
lscope_label_name
[
100
];
/* The N_FUN tag at the end of the function is a GNU extension,
which may be undesirable, and is unnecessary if we do not have
named sections. */
if
(
!
use_gnu_debug_info_extensions
||
NO_DBX_FUNCTION_END
||
!
targetm
.
have_named_sections
||
DECL_IGNORED_P
(
decl
))
return
;
/* The Lscope label must be emitted even if we aren't doing anything
/* The Lscope label must be emitted even if we aren't doing anything
else; dbxout_block needs it. */
else; dbxout_block needs it. */
function_section
(
current_function_decl
);
function_section
(
current_function_decl
);
...
@@ -927,6 +918,15 @@ dbxout_function_end (tree decl)
...
@@ -927,6 +918,15 @@ dbxout_function_end (tree decl)
targetm
.
asm_out
.
internal_label
(
asm_out_file
,
"Lscope"
,
scope_labelno
);
targetm
.
asm_out
.
internal_label
(
asm_out_file
,
"Lscope"
,
scope_labelno
);
scope_labelno
++
;
scope_labelno
++
;
/* The N_FUN tag at the end of the function is a GNU extension,
which may be undesirable, and is unnecessary if we do not have
named sections. */
if
(
!
use_gnu_debug_info_extensions
||
NO_DBX_FUNCTION_END
||
!
targetm
.
have_named_sections
||
DECL_IGNORED_P
(
decl
))
return
;
/* By convention, GCC will mark the end of a function with an N_FUN
/* By convention, GCC will mark the end of a function with an N_FUN
symbol and an empty string. */
symbol and an empty string. */
#ifdef DBX_OUTPUT_NFUN
#ifdef DBX_OUTPUT_NFUN
...
...
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