1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 01:28:58 +00:00

Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@841 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-08-05 22:22:58 +00:00
parent adb0ac070a
commit 185bb4875f

View File

@ -690,8 +690,9 @@ static unsigned OptAdd2 (CodeSeg* S)
!CE_HasLabel (L[5]) &&
L[6]->OPC == OP65_JSR &&
strcmp (L[6]->Arg, "addeqysp") == 0 &&
!CE_HasLabel (L[6])) {
!CE_HasLabel (L[6]) &&
(GetRegInfo (S, I+7) & REG_AX) == 0) {
char Buf [20];
CodeEntry* X;
int Offs;
@ -2015,9 +2016,8 @@ static unsigned OptPtrLoad2 (CodeSeg* S)
!CE_HasLabel (L[6]) &&
L[7]->OPC == OP65_JSR &&
strcmp (L[7]->Arg, "ldauidx") == 0 &&
!CE_HasLabel (L[7]) &&
(GetRegInfo (S, I+8) & REG_AX) == 0) {
!CE_HasLabel (L[7])) {
CodeEntry* X;
/* Store the low byte and remove the TAY instead */