From: bernhardheld Date: Sun, 12 Oct 2003 18:57:20 +0000 (+0000) Subject: cosmetic: fixed identation of genCpl() X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=f6dd88a12139907fb8513cd84c29bf9b507ae550;p=fw%2Fsdcc cosmetic: fixed identation of genCpl() git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2936 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/mcs51/gen.c b/src/mcs51/gen.c index c453a792..aa19b83b 100644 --- a/src/mcs51/gen.c +++ b/src/mcs51/gen.c @@ -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--)