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
5a0a1a66
Commit
5a0a1a66
authored
Sep 09, 1998
by
Bernd Schmidt
Committed by
Jeff Law
Sep 09, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* print-rtl.c (print_rtx): For MEMs, print MEM_ALIAS_SET.
From-SVN: r22366
parent
502b941f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
gcc/ChangeLog
+4
-0
gcc/print-rtl.c
+3
-0
No files found.
gcc/ChangeLog
View file @
5a0a1a66
Wed Sep 9 21:58:41 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* print-rtl.c (print_rtx): For MEMs, print MEM_ALIAS_SET.
Wed Sep 9 13:14:41 1998 Richard Henderson <rth@cygnus.com>
* loop.c (load_mems): Copy rtx for output mem.
...
...
gcc/print-rtl.c
View file @
5a0a1a66
...
...
@@ -259,6 +259,9 @@ print_rtx (in_rtx)
abort
();
}
if
(
GET_CODE
(
in_rtx
)
==
MEM
)
fprintf
(
outfile
,
" %d"
,
MEM_ALIAS_SET
(
in_rtx
));
#if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT && LONG_DOUBLE_TYPE_SIZE == 64
if
(
GET_CODE
(
in_rtx
)
==
CONST_DOUBLE
&&
FLOAT_MODE_P
(
GET_MODE
(
in_rtx
)))
{
...
...
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