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
368f4cd6
Commit
368f4cd6
authored
Aug 26, 1999
by
Nick Clifton
Committed by
Nick Clifton
Aug 26, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Accept LABEL_REFs as well as SYMBOL_REFs in mem_loc_descriptor()
From-SVN: r28891
parent
b7e89a77
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+5
-0
gcc/dwarf2out.c
+4
-0
No files found.
gcc/ChangeLog
View file @
368f4cd6
Thu
Aug
26
09
:
46
:
16
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
dwarf2out
.
c
(
mem_loc_descriptor
)
:
Accept
LABEL_REFs
as
well
as
SYMBOL_REFs
.
1999
-
08
-
25
22
:
10
-
0700
Zack
Weinberg
<
zack
@bitmover
.
com
>
*
system
.
h
:
Don
'
t
redefine
abort
or
trim_filename
.
...
...
gcc/dwarf2out.c
View file @
368f4cd6
...
...
@@ -6615,6 +6615,10 @@ mem_loc_descriptor (rtl)
add_loc_descr
(
&
mem_loc_result
,
new_loc_descr
(
DW_OP_deref
,
0
,
0
));
break
;
case
LABEL_REF
:
/* Some ports can transform a symbol ref into a label ref, because
the symbol ref is too far away and has to be dumped into a constant
pool. */
case
CONST
:
case
SYMBOL_REF
:
mem_loc_result
=
new_loc_descr
(
DW_OP_addr
,
0
,
0
);
...
...
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