]> git.sur5r.net Git - cc65/blobdiff - src/cc65/loop.c
Merge remote-tracking branch 'upstream/master' into a5200
[cc65] / src / cc65 / loop.c
index f2925e0cb0614debac98da719cb374b166f6e278..c15c37a7965bbbba81fcea0faf116fadc797eff1 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 loop.c                                   */
+/*                                  loop.c                                   */
 /*                                                                           */
-/*                             Loop management                              */
+/*                              Loop management                              */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
@@ -45,7 +45,7 @@
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
@@ -56,7 +56,7 @@ static LoopDesc* LoopStack = 0;
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -68,9 +68,9 @@ LoopDesc* AddLoop (unsigned BreakLabel, unsigned ContinueLabel)
     LoopDesc* L = xmalloc (sizeof (LoopDesc));
 
     /* Fill in the data */
-    L->StackPtr                = StackPtr;
+    L->StackPtr         = StackPtr;
     L->BreakLabel       = BreakLabel;
-    L->ContinueLabel           = ContinueLabel;
+    L->ContinueLabel    = ContinueLabel;
 
     /* Insert it into the list */
     L->Next = LoopStack;
@@ -98,6 +98,3 @@ void DelLoop (void)
     LoopStack = LoopStack->Next;
     xfree (L);
 }
-
-
-