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
31ca3635
Commit
31ca3635
authored
Mar 11, 2003
by
Aldy Hernandez
Committed by
Aldy Hernandez
Mar 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko.
From-SVN: r64158
parent
ab82a49f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/dwarf2out.c
+1
-1
No files found.
gcc/ChangeLog
View file @
31ca3635
2003
-
03
-
10
Aldy
Hernandez
<
aldyh
@redhat
.
com
>
*
dwarf2out
.
c
(
multiple_reg_loc_descriptor
)
:
Fix
thinko
.
2003
-
03
-
10
Andrew
Pinski
<
apinski
@apple
.
com
>
2003
-
03
-
10
Andrew
Pinski
<
apinski
@apple
.
com
>
*
config
/
darwin
.
c
(
machopic_function_base_name
)
:
If
dynamic
-
no
-
pic
*
config
/
darwin
.
c
(
machopic_function_base_name
)
:
If
dynamic
-
no
-
pic
...
...
gcc/dwarf2out.c
View file @
31ca3635
...
@@ -8219,10 +8219,10 @@ multiple_reg_loc_descriptor (rtl, regs)
...
@@ -8219,10 +8219,10 @@ multiple_reg_loc_descriptor (rtl, regs)
{
{
dw_loc_descr_ref
t
;
dw_loc_descr_ref
t
;
++
reg
;
t
=
one_reg_loc_descriptor
(
reg
);
t
=
one_reg_loc_descriptor
(
reg
);
add_loc_descr
(
&
loc_result
,
t
);
add_loc_descr
(
&
loc_result
,
t
);
add_loc_descr
(
&
loc_result
,
new_loc_descr
(
DW_OP_piece
,
size
,
0
));
add_loc_descr
(
&
loc_result
,
new_loc_descr
(
DW_OP_piece
,
size
,
0
));
++
reg
;
}
}
return
loc_result
;
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