Commit db5a4680 by Jeff Law

* h8300.c (output_adds_subs): check for adding 0.

From-SVN: r13984
parent 5b5686f5
......@@ -735,6 +735,10 @@ output_adds_subs (operands)
if (val == -1)
return "subs #1,%A0";
/* If not optimizing, we might be asked to add 0. */
if (val == 0)
return "";
/* In theory, this can't happen. */
abort ();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment