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
3f0aabf2
Commit
3f0aabf2
authored
Dec 18, 1999
by
J"orn Rennecke
Committed by
Joern Rennecke
Dec 18, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* unroll.c (copy_loop_body): Don't treat a REG like a PLUS.
From-SVN: r31016
parent
0cc6d0ac
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
gcc/ChangeLog
+4
-0
gcc/unroll.c
+3
-0
No files found.
gcc/ChangeLog
View file @
3f0aabf2
Sat
Dec
18
18
:
30
:
20
1999
J
"orn Rennecke <amylaar@cygnus.co.uk>
* unroll.c (copy_loop_body): Don't treat a REG like a PLUS.
1999-12-18 10:42 -0800 Zack Weinberg <zack@wolery.cumb.org>
1999-12-18 10:42 -0800 Zack Weinberg <zack@wolery.cumb.org>
* objc/objc-parse.c: Regenerate. This file must be rebuilt
* objc/objc-parse.c: Regenerate. This file must be rebuilt
...
...
gcc/unroll.c
View file @
3f0aabf2
...
@@ -1812,12 +1812,15 @@ copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration,
...
@@ -1812,12 +1812,15 @@ copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration,
value
=
plus_constant
(
tv
->
dest_reg
,
value
=
plus_constant
(
tv
->
dest_reg
,
tv
->
const_adjust
);
tv
->
const_adjust
);
if
(
GET_CODE
(
value
)
==
PLUS
)
{
/* The constant could be too large for an add
/* The constant could be too large for an add
immediate, so can't directly emit an insn
immediate, so can't directly emit an insn
here. */
here. */
emit_unrolled_add
(
dest_reg
,
XEXP
(
value
,
0
),
emit_unrolled_add
(
dest_reg
,
XEXP
(
value
,
0
),
XEXP
(
value
,
1
));
XEXP
(
value
,
1
));
}
}
}
/* Reset the giv to be just the register again, in case
/* Reset the giv to be just the register again, in case
it is used after the set we have just emitted.
it is used after the set we have just emitted.
...
...
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