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
30a1181a
Commit
30a1181a
authored
Jan 07, 2001
by
Michael Hayes
Committed by
Michael Hayes
Jan 07, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (emit_iv_add_mult): Use single_set to examine new insn.
From-SVN: r38764
parent
cabf3891
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
gcc/ChangeLog
+4
-0
gcc/loop.c
+6
-3
No files found.
gcc/ChangeLog
View file @
30a1181a
2001-01-07 Michael Hayes <mhayes@redhat.com>
* loop.c (emit_iv_add_mult): Use single_set to examine new insn.
2001-01-07 Richard Henderson <rth@redhat.com>
* sched-rgn.c (is_cfg_nonregular): Fix thinko's last change.
...
...
gcc/loop.c
View file @
30a1181a
...
...
@@ -6904,9 +6904,12 @@ emit_iv_add_mult (b, m, a, reg, insert_before)
record_base_value
(
REGNO
(
SET_DEST
(
set
)),
SET_SRC
(
set
),
0
);
}
}
else
if
(
GET_CODE
(
seq
)
==
SET
&&
GET_CODE
(
SET_DEST
(
seq
))
==
REG
)
record_base_value
(
REGNO
(
SET_DEST
(
seq
)),
SET_SRC
(
seq
),
0
);
else
{
rtx
set
=
single_set
(
seq
);
if
(
set
&&
GET_CODE
(
SET_DEST
(
set
))
==
REG
)
record_base_value
(
REGNO
(
SET_DEST
(
set
)),
SET_SRC
(
set
),
0
);
}
}
/* Similar to emit_iv_add_mult, but compute cost rather than emitting
...
...
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