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
7d104885
Commit
7d104885
authored
Feb 27, 2002
by
Graham Stott
Committed by
Graham Stott
Feb 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (prescan_loop): Handle PARALLEL.
From-SVN: r50101
parent
8ed805d2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
gcc/ChangeLog
+2
-0
gcc/loop.c
+5
-4
No files found.
gcc/ChangeLog
View file @
7d104885
2002-02-27 Graham Stott <grahams@redhat.com>
* loop.c (prescan_loop): Handle PARALLEL.
* unroll.c (loop_iterations): Return 0 if the add_val for
a BIV is REG.
...
...
gcc/loop.c
View file @
7d104885
...
...
@@ -2504,16 +2504,17 @@ prescan_loop (loop)
if
(
set
)
{
rtx
src
=
SET_SRC
(
set
);
rtx
label1
,
label2
;
if
(
GET_CODE
(
SET_SRC
(
set
)
)
==
IF_THEN_ELSE
)
if
(
GET_CODE
(
src
)
==
IF_THEN_ELSE
)
{
label1
=
XEXP
(
SET_SRC
(
set
)
,
1
);
label2
=
XEXP
(
SET_SRC
(
set
)
,
2
);
label1
=
XEXP
(
src
,
1
);
label2
=
XEXP
(
src
,
2
);
}
else
{
label1
=
SET_SRC
(
PATTERN
(
insn
))
;
label1
=
src
;
label2
=
NULL_RTX
;
}
...
...
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