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
15389075
Commit
15389075
authored
Jan 25, 1998
by
Richard Henderson
Committed by
Richard Henderson
Jan 25, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alpha.c (alpha_expand_block_move): Copy ADDRESSOF to reg.
From-SVN: r17485
parent
83c8ddef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+4
-0
gcc/config/alpha/alpha.c
+6
-0
No files found.
gcc/ChangeLog
View file @
15389075
Sun Jan 25 22:22:04 1998 Richard Henderson <rth@cygnus.com>
* alpha.c (alpha_expand_block_move): Copy ADDRESSOF to reg.
Sun Jan 25 22:14:28 1998 Richard Henderson <rth@cygnus.com>
* toplev.c (get_run_time): Make sure each case gets its variables.
...
...
gcc/config/alpha/alpha.c
View file @
15389075
...
...
@@ -1614,6 +1614,12 @@ alpha_expand_block_move (operands)
if
(
bytes
>
MAX_MOVE_WORDS
*
8
)
return
0
;
/* Ideally we would do nice things when noticing the addressof. */
if
(
GET_CODE
(
XEXP
(
orig_src
,
0
))
==
ADDRESSOF
)
orig_src
=
copy_addr_to_reg
(
XEXP
(
orig_src
,
0
));
if
(
GET_CODE
(
XEXP
(
orig_dst
,
0
))
==
ADDRESSOF
)
orig_dst
=
copy_addr_to_reg
(
XEXP
(
orig_dst
,
0
));
/* Handle a block of contiguous words first. */
if
(
align
>=
8
&&
bytes
>=
8
)
...
...
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