* device/include/malloc.h: removed redundant __reentrant prototypes
[fw/sdcc] / src / SDCCcse.c
index ad94b3a58a55a5e38d4245dd87f8c9b7f8246c97..4b524b0bf5fb1b82e0a148e3da5e11687f523563 100644 (file)
@@ -1535,7 +1535,7 @@ constFold (iCode * ic, set * cseSet)
       ic->op != '-')
     return 0;
 
-  /* this check is a hueristic to prevent live ranges
+  /* this check is a heuristic to prevent live ranges
      from becoming too long */
   if (IS_PTR (operandType (IC_RESULT (ic))))
       return 0;
@@ -1545,7 +1545,7 @@ constFold (iCode * ic, set * cseSet)
     return 0;
 
   /* check if we can find a definition for the
-     right hand side */
+     left hand side */
   if (!(applyToSet (cseSet, diCodeForSym, IC_LEFT (ic), &dic)))
     return 0;