operandsNotEqualX peephole test functions were never called
authorkvigor <kvigor@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 11 Mar 2003 22:49:19 +0000 (22:49 +0000)
committerkvigor <kvigor@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 11 Mar 2003 22:49:19 +0000 (22:49 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2375 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
src/SDCCpeeph.c

index d6ef854a6a88e2128c1ffa1b1e9c04909e997064..9b9f1ce6f0f40828054dcd38c74c5bc3b296bd77 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-03-11 Kevin Vigor <kevin@vigor.nu>
+
+       * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
+       actually called (operandsNotEqual() was called for all 
+       operandsNotEqualX tests).
+
 2003-03-11 Kevin Vigor <kevin@vigor.nu>
 
        * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
index a928f3a0e1084f1b0b0a1a5add4c7d6660b5f40a..6b68b305aff1c392192c1cae87c10709d5dd66e2 100644 (file)
@@ -450,10 +450,6 @@ callFuncByName (char *fname,
       "labelInRange", labelInRange
     }
     ,
-    {
-      "operandsNotSame", operandsNotSame
-    }
-    ,
     {
       "operandsNotSame3", operandsNotSame3
     }
@@ -478,6 +474,10 @@ callFuncByName (char *fname,
       "operandsNotSame8", operandsNotSame8
     }
     ,
+    {
+      "operandsNotSame", operandsNotSame
+    }
+    ,    
     {
       "24bitMode", flat24bitMode
     }