]> git.gag.com Git - fw/sdcc/commitdiff
* src/SDCCcse.c (updateSpillLocation): fixed bug #808027
authorkflittner <kflittner@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 31 Oct 2003 16:10:19 +0000 (16:10 +0000)
committerkflittner <kflittner@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 31 Oct 2003 16:10:19 +0000 (16:10 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2976 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
src/SDCCcse.c

index 98bc5b150e51c9a3653969865261918b18e91af3..3eb5c39cada2b048a63f6613c81fc8a12b1ab8d2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-10-31 Klaus Flittner <klaus_flittner@gmx.de>
+
+       * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
+
 2003-10-31 Bernhard Held <bernhard@bernhardheld.de>
 
        * src/SDCCmain.c (linkEdit): "fixed" bug #833605
index 350e6bb92abe46548b6510e023843eeb539734ff..e9b2d87eb8be7fd9cd3f453d25077f3cdf388269 100644 (file)
@@ -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) &&