Commit c0954bcd by Jim Wilson

(i960_address_cost): Don't abort for invalid addresses.

From-SVN: r1877
parent 2654605a
......@@ -493,7 +493,9 @@ i960_address_cost (x)
if (GET_CODE (base) == PLUS || GET_CODE (base) == MULT)
return 6;
abort ();
/* This is an invalid address. The return value doesn't matter, but
for convenience we make this more expensive than anything else. */
return 12;
}
if (GET_CODE (x) == MULT)
return 6;
......
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