* src/hc08/ralloc.c (rematStr): fixed bug #879282
[fw/sdcc] / src / hc08 / ralloc.c
index f413f7653370a6fb3b5f81689fc4e0d99d1cfa54..be4a1c977ebce08c6d594969155ca09f01e06c4b 100644 (file)
@@ -1596,7 +1596,6 @@ rematStr (symbol * sym)
   
   while (1)
     {
-
       /* if plus or minus print the right hand side */
       if (ic->op == '+' || ic->op == '-')
        {
@@ -1629,7 +1628,7 @@ rematStr (symbol * sym)
       /* we reached the end */
       if (ic->op == ADDRESS_OF)
         sprintf (s, "%s", OP_SYMBOL (IC_LEFT (ic))->rname);
-      else if (ic->op == '=');
+      else if (ic->op == '=')
         sprintf (s, "0x%04x", (int) operandLitValue (IC_RIGHT (ic)) );
       break;
     }