From 7de5979224ce6dc60c4966b17f376cfa9aad13fd Mon Sep 17 00:00:00 2001 From: johanknol Date: Sun, 3 Mar 2002 12:06:05 +0000 Subject: [PATCH] fixed a warning git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1986 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDCCicode.c b/src/SDCCicode.c index dd8dca5f..7ee7dc79 100644 --- a/src/SDCCicode.c +++ b/src/SDCCicode.c @@ -1080,7 +1080,7 @@ operandOperation (operand * left, operand * right, break; case RIGHT_OP: { double lval = operandLitValue(left), rval = operandLitValue(right); - double res; + double res=0; switch ((SPEC_USIGN(let) ? 2 : 0) + (SPEC_USIGN(ret) ? 1 : 0)) { case 0: // left=unsigned right=unsigned -- 2.47.2