mirror of
https://github.com/cc65/cc65.git
synced 2025-01-02 09:34:22 +00:00
Fixed an error
git-svn-id: svn://svn.cc65.org/cc65/trunk@4017 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
61195d914e
commit
f495a9edc3
@ -1316,7 +1316,7 @@ unsigned OptTransfers3 (CodeSeg* S)
|
|||||||
*/
|
*/
|
||||||
if ((GetRegInfo (S, I, XferEntry->Chg) & XferEntry->Chg) == 0 &&
|
if ((GetRegInfo (S, I, XferEntry->Chg) & XferEntry->Chg) == 0 &&
|
||||||
(StoreEntry->AM == AM65_ABS || StoreEntry->AM == AM65_ZP) &&
|
(StoreEntry->AM == AM65_ABS || StoreEntry->AM == AM65_ZP) &&
|
||||||
!MemAccess (S, Xfer+1, Store-1, E->Arg)) {
|
!MemAccess (S, Xfer+1, Store-1, StoreEntry->Arg)) {
|
||||||
|
|
||||||
/* Generate the replacement store insn */
|
/* Generate the replacement store insn */
|
||||||
CodeEntry* X = 0;
|
CodeEntry* X = 0;
|
||||||
@ -1478,10 +1478,10 @@ unsigned OptTransfers4 (CodeSeg* S)
|
|||||||
* replace the transfer by a load and remove the initial load.
|
* replace the transfer by a load and remove the initial load.
|
||||||
*/
|
*/
|
||||||
if ((GetRegInfo (S, I, LoadEntry->Chg) & LoadEntry->Chg) == 0 &&
|
if ((GetRegInfo (S, I, LoadEntry->Chg) & LoadEntry->Chg) == 0 &&
|
||||||
(LoadEntry->AM == AM65_ABS ||
|
(LoadEntry->AM == AM65_ABS ||
|
||||||
LoadEntry->AM == AM65_ZP ||
|
LoadEntry->AM == AM65_ZP ||
|
||||||
LoadEntry->AM == AM65_IMM) &&
|
LoadEntry->AM == AM65_IMM) &&
|
||||||
!MemAccess (S, Load+1, Xfer-1, E->Arg)) {
|
!MemAccess (S, Load+1, Xfer-1, LoadEntry->Arg)) {
|
||||||
|
|
||||||
/* Generate the replacement load insn */
|
/* Generate the replacement load insn */
|
||||||
CodeEntry* X = 0;
|
CodeEntry* X = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user