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
f7d2b0ed
Commit
f7d2b0ed
authored
Jan 05, 2001
by
Richard Henderson
Committed by
Richard Henderson
Jan 05, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (mem_loc_descriptor) [case MEM]: Revert 10-31 change.
From-SVN: r38737
parent
0426e049
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
12 deletions
+6
-12
gcc/ChangeLog
+4
-0
gcc/dwarf2out.c
+2
-12
No files found.
gcc/ChangeLog
View file @
f7d2b0ed
2001-01-05 Richard Henderson <rth@redhat.com>
* dwarf2out.c (mem_loc_descriptor) [case MEM]: Revert 10-31 change.
Fri Jan 5 16:34:18 2001 Nick Clifton <nickc@redhat.com>
* config/v850/lib1funcs.asm: Replace __mulsi3 routine with faster
...
...
gcc/dwarf2out.c
View file @
f7d2b0ed
...
...
@@ -7650,18 +7650,8 @@ mem_loc_descriptor (rtl, mode)
break
;
case
MEM
:
{
dw_loc_descr_ref
deref
;
mem_loc_result
=
mem_loc_descriptor
(
XEXP
(
rtl
,
0
),
GET_MODE
(
rtl
));
if
(
GET_MODE_SIZE
(
mode
)
==
DWARF2_ADDR_SIZE
)
deref
=
new_loc_descr
(
DW_OP_deref
,
0
,
0
);
else
deref
=
new_loc_descr
(
DW_OP_deref_size
,
GET_MODE_SIZE
(
mode
),
0
);
add_loc_descr
(
&
mem_loc_result
,
deref
);
}
mem_loc_result
=
mem_loc_descriptor
(
XEXP
(
rtl
,
0
),
GET_MODE
(
rtl
));
add_loc_descr
(
&
mem_loc_result
,
new_loc_descr
(
DW_OP_deref
,
0
,
0
));
break
;
case
LABEL_REF
:
...
...
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