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
d7836e38
Commit
d7836e38
authored
Oct 24, 2000
by
Aldy Hernandez
Committed by
Aldy Hernandez
Oct 24, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not propagate constants into jump_insn's for machines with CC0, more than once
From-SVN: r37039
parent
5e2c51ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletions
+12
-1
gcc/ChangeLog
+5
-0
gcc/gcse.c
+7
-1
No files found.
gcc/ChangeLog
View file @
d7836e38
2000-10-24 Aldy Hernandez <aldyh@redhat.com>
* gcse.c (cprop_insn): do not propagate constants into jump_insn
for machines with CC0 more than once.
2000-10-24 Richard Henderson <rth@cygnus.com>, Aldy <aldyh@cygnus.com>
2000-10-24 Richard Henderson <rth@cygnus.com>, Aldy <aldyh@cygnus.com>
* config/mn10300/mn10300.h (PREFERRED_RELOAD_CLASS): Treat
* config/mn10300/mn10300.h (PREFERRED_RELOAD_CLASS): Treat
...
...
gcc/gcse.c
View file @
d7836e38
...
@@ -3948,7 +3948,13 @@ cprop_insn (insn, alter_jumps)
...
@@ -3948,7 +3948,13 @@ cprop_insn (insn, alter_jumps)
&&
GET_CODE
(
NEXT_INSN
(
insn
))
==
JUMP_INSN
&&
GET_CODE
(
NEXT_INSN
(
insn
))
==
JUMP_INSN
&&
condjump_p
(
NEXT_INSN
(
insn
))
&&
condjump_p
(
NEXT_INSN
(
insn
))
&&
!
simplejump_p
(
NEXT_INSN
(
insn
)))
&&
!
simplejump_p
(
NEXT_INSN
(
insn
)))
changed
|=
cprop_cc0_jump
(
insn
,
reg_used
,
src
);
{
if
(
cprop_cc0_jump
(
insn
,
reg_used
,
src
))
{
changed
=
1
;
break
;
}
}
#endif
#endif
}
}
else
if
(
GET_CODE
(
src
)
==
REG
else
if
(
GET_CODE
(
src
)
==
REG
...
...
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