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
90304f64
Commit
90304f64
authored
Mar 21, 1997
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa/pa.c (compute_movstrsi_length): Handle residuals correctly.
From-SVN: r13756
parent
3b800f71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
9 deletions
+6
-9
gcc/config/pa/pa.c
+6
-9
No files found.
gcc/config/pa/pa.c
View file @
90304f64
...
...
@@ -1944,20 +1944,17 @@ compute_movstrsi_length (insn)
if
(
align
>
4
)
align
=
4
;
/* The basic opying loop. */
/* The basic
c
opying loop. */
n_insns
=
6
;
/* Residuals. */
if
(
n_bytes
%
(
2
*
align
)
!=
0
)
{
/* Any residual caused by unrolling the copy loop. */
if
(
n_bytes
%
(
2
*
align
)
>
align
)
n_insns
+=
1
;
/* Any residual because the number of bytes was not a
multiple of the alignment. */
if
(
n_bytes
%
align
!=
0
)
n_insns
+=
1
;
if
((
n_bytes
%
(
2
*
align
))
>=
align
)
n_insns
+=
2
;
if
((
n_bytes
%
align
)
!=
0
)
n_insns
+=
2
;
}
/* Lengths are expressed in bytes now; each insn is 4 bytes. */
...
...
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