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
aed38127
Commit
aed38127
authored
Jan 17, 2015
by
Alan Modra
Committed by
Alan Modra
Jan 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert last change
From-SVN: r219792
parent
48c528ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
gcc/ChangeLog
+4
-0
gcc/cprop.c
+1
-3
No files found.
gcc/ChangeLog
View file @
aed38127
2015-01-17 Alan Modra <amodra@gmail.com>
* cprop.c (do_local_cprop): Revert last change.
2015-01-16 DJ Delorie <dj@redhat.com>
Nick Clifton <nickc@redhat.com>
...
...
gcc/cprop.c
View file @
aed38127
...
...
@@ -1189,12 +1189,10 @@ do_local_cprop (rtx x, rtx_insn *insn)
rtx
newreg
=
NULL
,
newcnst
=
NULL
;
/* Rule out USE instructions and ASM statements as we don't want to
change the hard registers mentioned, and don't change fixed hard
registers. */
change the hard registers mentioned. */
if
(
REG_P
(
x
)
&&
(
REGNO
(
x
)
>=
FIRST_PSEUDO_REGISTER
||
(
GET_CODE
(
PATTERN
(
insn
))
!=
USE
&&
!
fixed_regs
[
REGNO
(
x
)]
&&
asm_noperands
(
PATTERN
(
insn
))
<
0
)))
{
cselib_val
*
val
=
cselib_lookup
(
x
,
GET_MODE
(
x
),
0
,
VOIDmode
);
...
...
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