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
eaff4f5a
Commit
eaff4f5a
authored
Jan 22, 1993
by
Brendan Kehoe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cygnus<-->FSF merge
From-SVN: r3303
parent
936b69b3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/dbxout.c
+4
-1
gcc/flags.h
+5
-0
No files found.
gcc/dbxout.c
View file @
eaff4f5a
...
...
@@ -726,7 +726,10 @@ dbxout_type_methods (type)
if
(
!
warned
)
{
warned
=
1
;
warning
(
"dbx info for template class methods not yet supported"
);
#ifdef HAVE_TEMPLATES
if
(
warn_template_debugging
)
warning
(
"dbx info for template class methods not yet supported"
);
#endif
}
return
;
}
...
...
gcc/flags.h
View file @
eaff4f5a
...
...
@@ -96,6 +96,11 @@ extern int warn_return_type;
extern
int
warn_cast_align
;
/* Nonzero means warn that dbx info for template class methods isn't fully
supported yet. */
extern
int
warn_template_debugging
;
/* Nonzero means warn about any identifiers that match in the first N
characters. The value N is in `id_clash_len'. */
...
...
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