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
a9e8a5ee
Commit
a9e8a5ee
authored
Jan 13, 2002
by
Richard Kenner
Committed by
Richard Kenner
Jan 13, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (mem_loc_descriptor, case ADDRESSOF): New case.
From-SVN: r48815
parent
1536ef88
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
gcc/ChangeLog
+4
-0
gcc/dwarf2out.c
+8
-0
No files found.
gcc/ChangeLog
View file @
a9e8a5ee
Sun Jan 13 06:55:31 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* dwarf2out.c (mem_loc_descriptor, case ADDRESSOF): New case.
2002-01-12 Tom Rix <trix@redhat.com>
* config/rs6000/rs6000.c (rs6000_emit_set_long_const): Use ior for
...
...
gcc/dwarf2out.c
View file @
a9e8a5ee
...
...
@@ -7854,6 +7854,14 @@ mem_loc_descriptor (rtl, mode)
mem_loc_result
=
int_loc_descriptor
(
INTVAL
(
rtl
));
break
;
case
ADDRESSOF
:
/* If this is a MEM, return its address. Otherwise, we can't
represent this. */
if
(
GET_CODE
(
XEXP
(
rtl
,
0
))
==
MEM
)
return
mem_loc_descriptor
(
XEXP
(
XEXP
(
rtl
,
0
),
0
),
mode
);
else
return
0
;
default
:
abort
();
}
...
...
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