From: kflittner Date: Fri, 21 Nov 2003 19:31:54 +0000 (+0000) Subject: * src/SDCCloop.c (newInduction): fixed bug #845630 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=f00323e77b72888b89d89234e83e4ad33a855fdc;p=fw%2Fsdcc * src/SDCCloop.c (newInduction): fixed bug #845630 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3024 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index cf32c840..63aa3a67 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-11-21 Klaus Flittner + + * src/SDCCloop.c (newInduction): fixed bug #845630 + 2003-11-21 Erik Petrich * src/SDCCsymt.c (compareTypesExact): disabled debugging output diff --git a/src/SDCCloop.c b/src/SDCCloop.c index 1ff5e2cd..c6910185 100644 --- a/src/SDCCloop.c +++ b/src/SDCCloop.c @@ -46,7 +46,7 @@ newInduction (operand * sym, unsigned int op, ip->op = op; ip->cval = constVal; ip->ic = ic; - updateSpillLocation(ic,1); +//updateSpillLocation(ic,1); return ip; }