]> git.sur5r.net Git - cc65/blobdiff - src/cc65/coptpush.h
Add support for computed gotos
[cc65] / src / cc65 / coptpush.h
index 02b15d7ee6935cbcfa2a8bba1d996eed4af8e293..0d637e8245dad738371b5a7be8dd3e4ce3312a8b 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                               coptpush.h                                 */
+/*                                coptpush.h                                 */
 /*                                                                           */
-/*                         Optimize push sequences                          */
+/*                          Optimize push sequences                          */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
 
 unsigned OptPush1 (CodeSeg* S);
 /* Given a sequence
- *
- *     ldy     #xx
- *     jsr     ldaxysp
- *     jsr     pushax
- *
- * If a/x are not used later, replace that by
- *
- *     ldy     #xx+2
- *     jsr     pushwysp
- *
- * saving 3 bytes and several cycles.
- */
+**
+**     ldy     #xx
+**     jsr     ldaxysp
+**     jsr     pushax
+**
+** If a/x are not used later, replace that by
+**
+**     ldy     #xx+2
+**     jsr     pushwysp
+**
+** saving 3 bytes and several cycles.
+*/
 
 unsigned OptPush2 (CodeSeg* S);
 /* A sequence
- *
- *     jsr     ldaxidx
- *     jsr     pushax
- *
- * may get replaced by
- *
- *     jsr     pushwidx
- *
- */
+**
+**     jsr     ldaxidx
+**     jsr     pushax
+**
+** may get replaced by
+**
+**     jsr     pushwidx
+*/
 
 
 
 /* End of coptpush.h */
 
 #endif
-
-
-