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
6c1b3bf2
Commit
6c1b3bf2
authored
Aug 27, 1999
by
Bernd Schmidt
Committed by
Bernd Schmidt
Aug 27, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for 'Deadly optimization bug' (see egcs mailing list archive)
From-SVN: r28928
parent
7cfc8a78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+5
-0
gcc/combine.c
+5
-0
No files found.
gcc/ChangeLog
View file @
6c1b3bf2
Fri
Aug
27
10
:
33
:
35
1999
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
combine
.
c
(
get_last_value
)
:
Don
'
t
look
for
earlier
sets
if
the
last
known
set
is
somewhere
in
between
the
insns
being
combined
.
Fri
Aug
27
10
:
03
:
12
BST
1999
Nathan
Sidwell
<
nathan
@acm
.
org
>
*
configure
.
in
:
Don
'
t
use
shell
!
to
negate
exit
codes
...
...
gcc/combine.c
View file @
6c1b3bf2
...
...
@@ -10832,6 +10832,11 @@ get_last_value (x)
{
rtx
insn
,
set
;
/* We can't do anything if the value is set in between the insns we are
processing. */
if
(
INSN_CUID
(
reg_last_set
[
regno
])
<=
INSN_CUID
(
subst_insn
))
return
0
;
/* We can not do anything useful in this case, because there is
an instruction which is not on the insn chain. */
if
(
subst_prev_insn
)
...
...
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