cosmetic: fixed identation of genCpl()
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 12 Oct 2003 18:57:20 +0000 (18:57 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 12 Oct 2003 18:57:20 +0000 (18:57 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2936 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/mcs51/gen.c

index c453a7925c9c415c7cc5cdf19313200c48531347..aa19b83b1edb3c142e04288ab6b43c00ee5bf1d2 100644 (file)
@@ -1449,25 +1449,25 @@ genCpl (iCode * ic)
          goto release;
        }
 
-    tlbl=newiTempLabel(NULL);
-    if (AOP_TYPE (IC_LEFT (ic)) == AOP_ACC ||
-       AOP_TYPE (IC_LEFT (ic)) == AOP_REG ||
-       IS_AOP_PREG (IC_LEFT (ic)))
-      {
-       emitcode ("cjne", "%s,#0x01,%05d$",
-                 aopGet (AOP (IC_LEFT (ic)), 0, FALSE, FALSE),
-                 tlbl->key + 100);
-      }
-    else
-      {
-        char *l = aopGet (AOP (IC_LEFT (ic)), 0, FALSE, FALSE);
-        MOVA (l);
-        emitcode ("cjne", "a,#0x01,%05d$", tlbl->key + 100);
-      }
-    emitcode ("", "%05d$:", tlbl->key + 100);
-    outBitC (IC_RESULT(ic));
-    goto release;
-  }
+      tlbl=newiTempLabel(NULL);
+      if (AOP_TYPE (IC_LEFT (ic)) == AOP_ACC ||
+         AOP_TYPE (IC_LEFT (ic)) == AOP_REG ||
+         IS_AOP_PREG (IC_LEFT (ic)))
+       {
+         emitcode ("cjne", "%s,#0x01,%05d$",
+                   aopGet (AOP (IC_LEFT (ic)), 0, FALSE, FALSE),
+                   tlbl->key + 100);
+       }
+      else
+       {
+         char *l = aopGet (AOP (IC_LEFT (ic)), 0, FALSE, FALSE);
+         MOVA (l);
+         emitcode ("cjne", "a,#0x01,%05d$", tlbl->key + 100);
+       }
+      emitcode ("", "%05d$:", tlbl->key + 100);
+      outBitC (IC_RESULT(ic));
+      goto release;
+    }
 
   size = AOP_SIZE (IC_RESULT (ic));
   while (size--)