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
f69bbb46
Commit
f69bbb46
authored
Sep 01, 2008
by
Jan Hubicka
Committed by
Jan Hubicka
Sep 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/spu/spu.c (spu_expand_block_move) Update call of MOVE_RATIO.
From-SVN: r139856
parent
e04ad03d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/ChangeLog
+2
-0
gcc/config/spu/spu.c
+1
-1
No files found.
gcc/ChangeLog
View file @
f69bbb46
2008
-
00
-
01
Jan
Hubicka
<
jh
@suse
.
cz
>
*
config
/
spu
/
spu
.
c
(
spu_expand_block_move
)
Update
call
of
MOVE_RATIO
.
*
expr
.
c
(
MOVE_BY_PIECES_P
,
CLEAR_BY_PIECES_P
,
SET_BY_PIECES_P
)
:
Pass
speed
operand
.
*
expr
.
h
(
MOVE_RATIO
,
CLEAR_RATIO
,
SET_RATIO
)
:
Update
.
*
gimplify
.
c
(
gimplify_init_constructor
)
:
Add
speed
operand
.
...
...
gcc/config/spu/spu.c
View file @
f69bbb46
...
...
@@ -663,7 +663,7 @@ spu_expand_block_move (rtx ops[])
int
i
;
if
(
GET_CODE
(
ops
[
2
])
!=
CONST_INT
||
GET_CODE
(
ops
[
3
])
!=
CONST_INT
||
INTVAL
(
ops
[
2
])
>
(
HOST_WIDE_INT
)
(
MOVE_RATIO
*
8
))
||
INTVAL
(
ops
[
2
])
>
(
HOST_WIDE_INT
)
(
MOVE_RATIO
(
optimize_insn_for_speed_p
())
*
8
))
return
0
;
bytes
=
INTVAL
(
ops
[
2
]);
...
...
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