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
aaf9712e
Commit
aaf9712e
authored
May 05, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r901
parent
695dac07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
gcc/reload.c
+9
-11
No files found.
gcc/reload.c
View file @
aaf9712e
...
@@ -1963,12 +1963,6 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
...
@@ -1963,12 +1963,6 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
register
RTX_CODE
code
=
GET_CODE
(
recog_operand
[
i
]);
register
RTX_CODE
code
=
GET_CODE
(
recog_operand
[
i
]);
modified
[
i
]
=
RELOAD_READ
;
modified
[
i
]
=
RELOAD_READ
;
address_reloaded
[
i
]
=
0
;
address_reloaded
[
i
]
=
0
;
preferred_class
[
i
]
=
((
code
==
REG
&&
REGNO
(
recog_operand
[
i
])
>
FIRST_PSEUDO_REGISTER
)
?
reg_preferred_class
(
REGNO
(
recog_operand
[
i
]))
:
NO_REGS
);
pref_or_nothing
[
i
]
=
(
code
==
REG
&&
REGNO
(
recog_operand
[
i
])
>
FIRST_PSEUDO_REGISTER
&&
reg_preferred_or_nothing
(
REGNO
(
recog_operand
[
i
])));
if
(
constraints
[
i
][
0
]
==
'p'
)
if
(
constraints
[
i
][
0
]
==
'p'
)
{
{
...
@@ -2037,13 +2031,17 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
...
@@ -2037,13 +2031,17 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
&
XEXP
(
recog_operand
[
i
],
0
),
&
XEXP
(
recog_operand
[
i
],
0
),
recog_operand
[
i
],
ind_levels
);
recog_operand
[
i
],
ind_levels
);
substed_operand
[
i
]
=
recog_operand
[
i
]
=
*
recog_operand_loc
[
i
];
substed_operand
[
i
]
=
recog_operand
[
i
]
=
*
recog_operand_loc
[
i
];
/* This is no longer a psuedo register. To prevent later code
from thinking it still is, we must reset the preferred_class
to NO_REGS. */
preferred_class
[
i
]
=
NO_REGS
;
}
}
}
}
/* If the operand is still a register (we didn't replace it with an
equivalent), get the preferred class to reload it into. */
code
=
GET_CODE
(
recog_operand
[
i
]);
preferred_class
[
i
]
=
((
code
==
REG
&&
REGNO
(
recog_operand
[
i
])
>
FIRST_PSEUDO_REGISTER
)
?
reg_preferred_class
(
REGNO
(
recog_operand
[
i
]))
:
NO_REGS
);
pref_or_nothing
[
i
]
=
(
code
==
REG
&&
REGNO
(
recog_operand
[
i
])
>
FIRST_PSEUDO_REGISTER
&&
reg_preferred_or_nothing
(
REGNO
(
recog_operand
[
i
])));
}
}
/* If this is simply a copy from operand 1 to operand 0, merge the
/* If this is simply a copy from operand 1 to operand 0, merge the
...
...
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