]> git.sur5r.net Git - cc65/commitdiff
Removed a duplicate line
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 12 Jun 2000 09:29:13 +0000 (09:29 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 12 Jun 2000 09:29:13 +0000 (09:29 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@60 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/optimize.c

index 37eaaf1fe06b9e49e37735d3f67accbce7409162..ac8480cef0599242120a9b884e1d4c59fc16b21e 100644 (file)
@@ -3838,10 +3838,6 @@ static Line* OptOneBlock (Line* L)
        } else if (LineFullMatch (L, "\tjsr\tpusha")) {
            /* We know about this function */
            Y = 0;
-       } else if (LineFullMatch (L, "\tjsr\tpusha0")) {
-           /* We know about this function */
-           X = 0;
-           Y = 1;
        } else if (LineFullMatch (L, "\tjsr\tpusha0")) {
            /* We know about this function
             * If X is already zero, we may call pushax instead and save two
@@ -3912,7 +3908,7 @@ static Line* OptOneBlock (Line* L)
            Y = -1;
        } else if (LineFullMatch (L, "\tjsr\tstaxspp")) {
            /* We know about this function */
-           Y = -1;                              
+           Y = -1;
        } else if (LineFullMatch (L, "\tjsr\tstax0sp")) {
            /* We know about this function */
            Y = 1;