Commit 8127356e by Andreas Jaeger

* genrecog.c (compute_predicate_codes): Avoid warning.

From-SVN: r92668
parent 76335fef
2004-12-28 Andreas Jaeger <aj@suse.de>
* genrecog.c (compute_predicate_codes): Avoid warning.
2004-12-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* vax.c (vax_address_cost, vax_rtx_cost): Correct casts.
......
......@@ -300,7 +300,8 @@ compute_predicate_codes (rtx exp, char codes[NUM_RTX_CODE])
}
if (!found_it)
{
message_with_line (pattern_lineno, "match_code \"%.*s\" matches nothing", n, code);
message_with_line (pattern_lineno, "match_code \"%.*s\" matches nothing",
(int) n, code);
error_count ++;
for (i = 0; i < NUM_RTX_CODE; i++)
if (!strncasecmp (code, GET_RTX_NAME (i), n)
......
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