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
e695931e
Commit
e695931e
authored
Sep 11, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Sep 11, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix obvious thinko
From-SVN: r36314
parent
224e8983
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/reload.c
+2
-2
No files found.
gcc/ChangeLog
View file @
e695931e
2000-09-11 Bernd Schmidt <bernds@redhat.co.uk>
* reload.c (regno_clobbered_p): Fix thinko in previous change.
2000-09-10 Stephane Carrez <Stephane.Carrez@worldnet.fr>
2000-09-10 Stephane Carrez <Stephane.Carrez@worldnet.fr>
* gcc.1: Document 68hc11 specific options.
* gcc.1: Document 68hc11 specific options.
...
...
gcc/reload.c
View file @
e695931e
...
@@ -6560,7 +6560,7 @@ regno_clobbered_p (regno, insn, mode)
...
@@ -6560,7 +6560,7 @@ regno_clobbered_p (regno, insn, mode)
{
{
int
test
=
REGNO
(
XEXP
(
PATTERN
(
insn
),
0
));
int
test
=
REGNO
(
XEXP
(
PATTERN
(
insn
),
0
));
return
regno
>=
test
&&
test
<
endregno
;
return
test
>=
regno
&&
test
<
endregno
;
}
}
if
(
GET_CODE
(
PATTERN
(
insn
))
==
PARALLEL
)
if
(
GET_CODE
(
PATTERN
(
insn
))
==
PARALLEL
)
...
@@ -6574,7 +6574,7 @@ regno_clobbered_p (regno, insn, mode)
...
@@ -6574,7 +6574,7 @@ regno_clobbered_p (regno, insn, mode)
{
{
int
test
=
REGNO
(
XEXP
(
elt
,
0
));
int
test
=
REGNO
(
XEXP
(
elt
,
0
));
if
(
regno
>=
test
&&
test
<
endregno
)
if
(
test
>=
regno
&&
test
<
endregno
)
return
1
;
return
1
;
}
}
}
}
...
...
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