]> git.sur5r.net Git - cc65/commitdiff
Fixed a problem introduced with the last change.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 31 Oct 2009 14:01:22 +0000 (14:01 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 31 Oct 2009 14:01:22 +0000 (14:01 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4410 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/coptind.c

index d8446b8928c558e7d748f987d5d06ed8c5898dd6..c8a1061ac03ec1803339e9eb32382d06a86be1f8 100644 (file)
@@ -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);