mirror of
https://github.com/cc65/cc65.git
synced 2025-01-26 17:36:57 +00:00
Fixed a problem introduced with the last change.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4410 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
00a1121d8c
commit
b8b3dcce74
@ -831,7 +831,7 @@ unsigned OptJumpTarget3 (CodeSeg* S)
|
||||
* eventually remove a reference in the loop, we must loop
|
||||
* from end down to start.
|
||||
*/
|
||||
for (K = CL_GetRefCount (L) - 1; K >= 0; ++K) {
|
||||
for (K = CL_GetRefCount (L) - 1; K >= 0; --K) {
|
||||
|
||||
/* Get the entry that jumps here */
|
||||
CodeEntry* Jump = CL_GetRef (L, K);
|
||||
|
Loading…
x
Reference in New Issue
Block a user