1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-07 04:31:38 +00:00

Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@1632 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-11-25 14:24:48 +00:00
parent 9dbb7d3305
commit d8338efc53

View File

@ -105,7 +105,7 @@ static short RegVal (unsigned short Use, const RegContents* RC)
} else if ((Use & REG_SREG_HI) != 0) {
return RC->SRegHi;
} else {
return REG_NONE;
return UNKNOWN_REGVAL;
}
}
@ -961,7 +961,7 @@ unsigned OptDupLoads (CodeSeg* S)
CS_DelEntry (S, I);
/* Remember, we had changes */
++Changes;
++Changes;
} else {