]> git.sur5r.net Git - cc65/blobdiff - src/cc65/coptsub.h
Merge remote-tracking branch 'upstream/master' into a5200
[cc65] / src / cc65 / coptsub.h
index 828a1d417b9b8f15b5385f64066534fd14b51310..724abaa3c80b683e3b0dcea43fc19df5efcd288f 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                coptsub.h                                 */
+/*                                 coptsub.h                                 */
 /*                                                                           */
-/*                     Optimize subtraction sequences                       */
+/*                      Optimize subtraction sequences                       */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
@@ -44,7 +44,7 @@
 
 
 /*****************************************************************************/
-/*                          Optimize subtractions                           */
+/*                           Optimize subtractions                           */
 /*****************************************************************************/
 
 
@@ -52,9 +52,9 @@
 unsigned OptSub1 (CodeSeg* S);
 /* Search for the sequence
  *
- *     sbc     ...
+ *      sbc     ...
  *      bcs     L
- *     dex
+ *      dex
  * L:
  *
  * and remove the handling of the high byte if X is not used later.
@@ -63,9 +63,9 @@ unsigned OptSub1 (CodeSeg* S);
 unsigned OptSub2 (CodeSeg* S);
 /* Search for the sequence
  *
- *     lda     xx
+ *      lda     xx
  *      sec
- *     sta     tmp1
+ *      sta     tmp1
  *      lda     yy
  *      sbc     tmp1
  *      sta     yy
@@ -74,7 +74,7 @@ unsigned OptSub2 (CodeSeg* S);
  *
  *      sec
  *      lda     yy
- *             sbc     xx
+ *      sbc     xx
  *      sta     yy
  */
 
@@ -88,6 +88,3 @@ unsigned OptSub3 (CodeSeg* S);
 /* End of coptsub.h */
 
 #endif
-
-
-