1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Formatting tweaks.

This commit is contained in:
laubzega 2018-10-15 22:20:12 -07:00 committed by Oliver Schmidt
parent 6d8c315cdb
commit 249248ccc8

View File

@ -2061,9 +2061,9 @@ unsigned OptPrecalc (CodeSeg* S)
** because ADC/SBC #0 always clears it.
*/
if (In->RegA == 0 && CE_IsKnownImm (E, 0x00) &&
(E = CS_GetEntry (S, I + 1)) &&
E->OPC != OP65_BVC &&
E->OPC != OP65_BVS ) {
(E = CS_GetEntry (S, I + 1)) &&
E->OPC != OP65_BVC &&
E->OPC != OP65_BVS ) {
/* 0-0 or 0+0 -> remove */
CS_DelEntry (S, I);
++Changes;