]> git.sur5r.net Git - cc65/blobdiff - src/cc65/testexpr.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / cc65 / testexpr.c
index 5b2ae3d02dbddaec1e0b282c2e0d2396ea0bca1e..f95c94dd80449f1ddc7fd1b04920a84607eb3fb9 100644 (file)
@@ -44,7 +44,7 @@
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -67,13 +67,13 @@ unsigned Test (unsigned Label, int Invert)
         /* Result is constant, so we know the outcome */
         Result = (Expr.IVal != 0);
 
-       /* Constant rvalue */
-               if (!Invert && Expr.IVal == 0) {
-           g_jump (Label);
-           Warning ("Unreachable code");
-       } else if (Invert && Expr.IVal != 0) {
-           g_jump (Label);
-       }
+        /* Constant rvalue */
+        if (!Invert && Expr.IVal == 0) {
+            g_jump (Label);
+            Warning ("Unreachable code");
+        } else if (Invert && Expr.IVal != 0) {
+            g_jump (Label);
+        }
 
     } else {