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
5bc80b30
Commit
5bc80b30
authored
May 27, 1998
by
Jeffrey A Law
Committed by
Jeff Law
May 27, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload1.c: Revert accidental checkin.
From-SVN: r20106
parent
ed385fd9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
9 deletions
+7
-9
gcc/ChangeLog
+2
-0
gcc/reload1.c
+5
-9
No files found.
gcc/ChangeLog
View file @
5bc80b30
Wed May 27 22:02:40 1998 Jeffrey A Law (law@cygnus.com)
Wed May 27 22:02:40 1998 Jeffrey A Law (law@cygnus.com)
* reload1.c: Revert accidental checkin.
* configure.lang: Fix thinko when adding a definition for
* configure.lang: Fix thinko when adding a definition for
target_alias to the Makefile.
target_alias to the Makefile.
...
...
gcc/reload1.c
View file @
5bc80b30
...
@@ -4726,19 +4726,15 @@ reload_reg_free_before_p (regno, opnum, type)
...
@@ -4726,19 +4726,15 @@ reload_reg_free_before_p (regno, opnum, type)
return
!
TEST_HARD_REG_BIT
(
reload_reg_used_in_other_addr
,
regno
);
return
!
TEST_HARD_REG_BIT
(
reload_reg_used_in_other_addr
,
regno
);
case
RELOAD_FOR_INPUT
:
case
RELOAD_FOR_INPUT
:
/* The only things earlier are the address for this and earlier inputs,
/* The only things earlier are the address for this and
earlier inputs, and addresses of RELOAD_OTHER objects. */
earlier inputs, other inputs (which we know we don't conflict
with), and addresses of RELOAD_OTHER objects. */
for
(
i
=
0
;
i
<
opnum
;
i
++
)
for
(
i
=
0
;
i
<
=
opnum
;
i
++
)
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_input_addr
[
i
],
regno
)
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_input_addr
[
i
],
regno
)
||
TEST_HARD_REG_BIT
(
reload_reg_used_in_inpaddr_addr
[
i
],
regno
)
||
TEST_HARD_REG_BIT
(
reload_reg_used_in_inpaddr_addr
[
i
],
regno
))
||
TEST_HARD_REG_BIT
(
reload_reg_used_in_input
[
i
],
regno
))
return
0
;
return
0
;
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_input_addr
[
opnum
],
regno
)
||
TEST_HARD_REG_BIT
(
reload_reg_used_in_inpaddr_addr
[
opnum
],
regno
))
return
0
;
return
!
TEST_HARD_REG_BIT
(
reload_reg_used_in_other_addr
,
regno
);
return
!
TEST_HARD_REG_BIT
(
reload_reg_used_in_other_addr
,
regno
);
case
RELOAD_FOR_INPUT_ADDRESS
:
case
RELOAD_FOR_INPUT_ADDRESS
:
...
...
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