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
d22c2324
Commit
d22c2324
authored
Jun 02, 2002
by
Tom Tromey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverted erroneous checkin
From-SVN: r54193
parent
5d83269d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
16 deletions
+5
-16
gcc/dwarf2out.c
+5
-16
No files found.
gcc/dwarf2out.c
View file @
d22c2324
...
...
@@ -7656,27 +7656,16 @@ reg_loc_descriptor (rtl)
rtx
rtl
;
{
dw_loc_descr_ref
loc_result
=
NULL
;
unsigned
reg
,
i
,
max
;
unsigned
reg
;
if
(
REGNO
(
rtl
)
>=
FIRST_PSEUDO_REGISTER
)
return
0
;
reg
=
reg_number
(
rtl
);
max
=
HARD_REGNO_NREGS
(
reg
,
GET_MODE
(
rtl
));
for
(
i
=
0
;
i
<
max
;
++
i
)
{
add_loc_descr
(
&
loc_result
,
new_loc_descr
(
reg
<=
31
?
DW_OP_reg0
+
reg
:
DW_OP_regx
,
reg
<=
31
?
0
:
reg
,
0
));
if
(
max
>
1
)
add_loc_descr
(
&
loc_result
,
new_loc_descr
(
DW_OP_piece
,
GET_MODE_SIZE
(
reg_raw_mode
[
reg
]),
0
));
++
reg
;
}
if
(
reg
<=
31
)
loc_result
=
new_loc_descr
(
DW_OP_reg0
+
reg
,
0
,
0
);
else
loc_result
=
new_loc_descr
(
DW_OP_regx
,
reg
,
0
);
return
loc_result
;
}
...
...
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