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
f0c94be0
Commit
f0c94be0
authored
Jul 02, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(loop_iterations): Only use REG_EQUAL note value if it
is constant. From-SVN: r7648
parent
68597413
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
gcc/unroll.c
+5
-1
No files found.
gcc/unroll.c
View file @
f0c94be0
...
...
@@ -3160,7 +3160,11 @@ loop_iterations (loop_start, loop_end)
{
rtx
note
=
find_reg_note
(
insn
,
REG_EQUAL
,
NULL_RTX
);
if
(
note
&&
GET_CODE
(
XEXP
(
note
,
0
))
!=
EXPR_LIST
)
/* Only use the REG_EQUAL note if it is a constant.
Other things, divide in particular, will cause
problems later if we use them. */
if
(
note
&&
GET_CODE
(
XEXP
(
note
,
0
))
!=
EXPR_LIST
&&
CONSTANT_P
(
XEXP
(
note
,
0
)))
comparison_value
=
XEXP
(
note
,
0
);
}
break
;
...
...
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