From 2cafd4e83b33d8f8e604bd37803dda0c3d7d4aff Mon Sep 17 00:00:00 2001 From: kflittner Date: Fri, 31 Oct 2003 16:10:19 +0000 Subject: [PATCH] * src/SDCCcse.c (updateSpillLocation): fixed bug #808027 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2976 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- ChangeLog | 4 ++++ src/SDCCcse.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 98bc5b15..3eb5c39c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-10-31 Klaus Flittner + + * src/SDCCcse.c (updateSpillLocation): fixed bug #808027 + 2003-10-31 Bernhard Held * src/SDCCmain.c (linkEdit): "fixed" bug #833605 diff --git a/src/SDCCcse.c b/src/SDCCcse.c index 350e6bb9..e9b2d87e 100644 --- a/src/SDCCcse.c +++ b/src/SDCCcse.c @@ -1165,6 +1165,7 @@ updateSpillLocation (iCode * ic, int induction) if (ic->nosupdate) return; +#if 0 /* for the form true_symbol := iTempNN */ if (ASSIGN_ITEMP_TO_SYM (ic) && !SPIL_LOC (IC_RIGHT (ic))) { @@ -1183,6 +1184,7 @@ updateSpillLocation (iCode * ic, int induction) } } +#endif #if 0 /* this needs furthur investigation can save a lot of code */ if (ASSIGN_SYM_TO_ITEMP(ic) && -- 2.47.2