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
b1a86a99
Commit
b1a86a99
authored
May 23, 2001
by
Jason Merrill
Committed by
Jason Merrill
May 23, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dbxout.c (dbxout_type_methods): Do still group methods by name.
From-SVN: r42504
parent
7aa9922d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
gcc/ChangeLog
+4
-0
gcc/dbxout.c
+17
-0
No files found.
gcc/ChangeLog
View file @
b1a86a99
2001
-
05
-
23
Jason
Merrill
<
jason_merrill
@redhat
.
com
>
*
dbxout
.
c
(
dbxout_type_methods
)
:
Do
still
group
methods
by
name
.
2001
-
05
-
23
Zack
Weinberg
<
zackw
@stanford
.
edu
>
*
diagnostic
.
c
(
vnotice
)
:
Kill
.
...
...
gcc/dbxout.c
View file @
b1a86a99
...
...
@@ -771,6 +771,8 @@ dbxout_type_methods (type)
while
(
fndecl
)
{
int
need_prefix
=
1
;
/* Group together all the methods for the same operation.
These differ in the types of the arguments. */
for
(
last
=
NULL_TREE
;
...
...
@@ -802,10 +804,25 @@ dbxout_type_methods (type)
if
(
DECL_IGNORED_P
(
fndecl
)
||
DECL_ABSTRACT
(
fndecl
))
continue
;
/* Redundantly output the plain name, since that's what gdb
expects. */
if
(
need_prefix
)
{
tree
name
=
DECL_NAME
(
fndecl
);
fprintf
(
asmfile
,
"%s::"
,
IDENTIFIER_POINTER
(
name
));
CHARS
(
IDENTIFIER_LENGTH
(
name
)
+
2
);
need_prefix
=
0
;
}
dbxout_type
(
TREE_TYPE
(
fndecl
),
0
);
dbxout_type_method_1
(
fndecl
,
debug_name
);
}
if
(
!
need_prefix
)
{
putc
(
';'
,
asmfile
);
CHARS
(
1
);
}
}
}
...
...
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