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
ca1a4af1
Commit
ca1a4af1
authored
Nov 29, 1999
by
Bernd Schmidt
Committed by
Bernd Schmidt
Nov 29, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug in reloads_conflict
From-SVN: r30701
parent
e1306f49
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/reload1.c
+1
-1
No files found.
gcc/ChangeLog
View file @
ca1a4af1
...
...
@@ -30,6 +30,10 @@
*
unroll
.
c
(
loop_iterations
)
:
Don
'
t
abort
if
iteration
variable
was
made
by
loop
.
From
Joern
Rennecke
:
*
reload1
.
c
(
reloads_conflict
)
:
Reverse
test
comparing
operand
numbers
when
testing
for
conflict
between
output
/
outaddr
reloads
.
1999
-
11
-
29
David
S
.
Miller
<
davem
@redhat
.
com
>
*
config
/
sparc
/
sparc
.
c
(
init_cumulative_args
)
:
Fix
type
of
third
...
...
gcc/reload1.c
View file @
ca1a4af1
...
...
@@ -5232,7 +5232,7 @@ reloads_conflict (r1, r2)
return
(
r2_type
==
RELOAD_FOR_INSN
||
r2_type
==
RELOAD_FOR_OUTPUT
||
((
r2_type
==
RELOAD_FOR_OUTPUT_ADDRESS
||
r2_type
==
RELOAD_FOR_OUTADDR_ADDRESS
)
&&
r2_opnum
>
=
r1_opnum
));
&&
r2_opnum
<
=
r1_opnum
));
case
RELOAD_FOR_INSN
:
return
(
r2_type
==
RELOAD_FOR_INPUT
||
r2_type
==
RELOAD_FOR_OUTPUT
...
...
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