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
2618f955
Commit
2618f955
authored
Jun 22, 1999
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Retabify
From-SVN: r27704
parent
15b18336
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
7 deletions
+16
-7
gcc/ChangeLog
+10
-1
gcc/dwarf2out.c
+6
-6
No files found.
gcc/ChangeLog
View file @
2618f955
Tue Jun 22 17:14:58 1999 Michael Meissner <meissner@cygnus.com>
* dwarf2out.c (dwarf2out_frame_debug_expr): Reformat to match GNU
coding standards.
(dwarf2out_define): Mark unused parameters appropriately.
(gen_unspecified_parameters_die): Ditto.
(gen_subprogram_die): Fix signed/unsigned warnings.
(gen_variable_die): Ditto.
1999-06-22 Bruce Korb <ddsinc09@ix.netcom.com>
*fixinc/inclhack.def(end_else_label): combined else_label
*
fixinc/inclhack.def(end_else_label): combined else_label
and endif_label and fixed the sed expression.
*fixinc/{fixincl.x|inclhack.sh}: regen
...
...
gcc/dwarf2out.c
View file @
2618f955
...
...
@@ -8248,7 +8248,7 @@ gen_formal_parameter_die (node, context_die)
static
void
gen_unspecified_parameters_die
(
decl_or_type
,
context_die
)
register
tree
decl_or_type
;
register
tree
decl_or_type
ATTRIBUTE_UNUSED
;
register
dw_die_ref
context_die
;
{
new_die
(
DW_TAG_unspecified_parameters
,
context_die
);
...
...
@@ -8388,7 +8388,7 @@ gen_subprogram_die (decl, context_die)
||
context_die
==
NULL
)
&&
get_AT_unsigned
(
old_die
,
DW_AT_decl_file
)
==
file_index
&&
(
get_AT_unsigned
(
old_die
,
DW_AT_decl_line
)
==
DECL_SOURCE_LINE
(
decl
)))
==
(
unsigned
)
DECL_SOURCE_LINE
(
decl
)))
{
subr_die
=
old_die
;
...
...
@@ -8403,7 +8403,7 @@ gen_subprogram_die (decl, context_die)
if
(
get_AT_unsigned
(
old_die
,
DW_AT_decl_file
)
!=
file_index
)
add_AT_unsigned
(
subr_die
,
DW_AT_decl_file
,
file_index
);
if
(
get_AT_unsigned
(
old_die
,
DW_AT_decl_line
)
!=
DECL_SOURCE_LINE
(
decl
))
!=
(
unsigned
)
DECL_SOURCE_LINE
(
decl
))
add_AT_unsigned
(
subr_die
,
DW_AT_decl_line
,
DECL_SOURCE_LINE
(
decl
));
}
...
...
@@ -8640,7 +8640,7 @@ gen_variable_die (decl, context_die)
add_AT_unsigned
(
var_die
,
DW_AT_decl_file
,
file_index
);
if
(
get_AT_unsigned
(
old_die
,
DW_AT_decl_line
)
!=
DECL_SOURCE_LINE
(
decl
))
!=
(
unsigned
)
DECL_SOURCE_LINE
(
decl
))
add_AT_unsigned
(
var_die
,
DW_AT_decl_line
,
DECL_SOURCE_LINE
(
decl
));
...
...
@@ -9912,8 +9912,8 @@ dwarf2out_end_source_file ()
void
dwarf2out_define
(
lineno
,
buffer
)
register
unsigned
lineno
;
register
char
*
buffer
;
register
unsigned
lineno
ATTRIBUTE_UNUSED
;
register
char
*
buffer
ATTRIBUTE_UNUSED
;
{
static
int
initialized
=
0
;
if
(
!
initialized
)
...
...
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