From 8054f383bc887877947b3a056da737a546761fc2 Mon Sep 17 00:00:00 2001 From: johanknol Date: Tue, 16 Oct 2001 08:14:04 +0000 Subject: [PATCH] fixed regression bug, although it doesn't fix the regression git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1406 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCicode.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/SDCCicode.c b/src/SDCCicode.c index 0caa5b2f..b3fb3158 100644 --- a/src/SDCCicode.c +++ b/src/SDCCicode.c @@ -927,6 +927,10 @@ operandOperation (operand * left, operand * right, switch (op) { + case '=': + // we need this now because of SDCCcse.c:1.52, it's a regression though + retval = right; + break; case '+': retval = operandFromValue (valCastLiteral (type, operandLitValue (left) + -- 2.39.5