Commit c6d79bee by Jan Hubicka Committed by Jan Hubicka

* genoutput.c (process_template): Add sanity checking for '@' templates.

From-SVN: r38220
parent ee84a135
Wed Dec 13 17:25:32 MET 2000 Jan Hubicka <jh@suse.cz>
* genoutput.c (process_template): Add sanity checking for '@' templates.
2000-12-13 Bernd Schmidt <bernds@redhat.co.uk>
* simplify-rtx.c (cselib_finish): Free reg_values and used_regs
......
......@@ -701,6 +701,15 @@ process_template (d, template)
printf ("\",\n");
i++;
}
if (i == 1)
message_with_line (d->lineno,
"'@' is redundant for output template with single alternative");
if (i != d->n_alternatives)
{
message_with_line (d->lineno,
"Wrong number of alternatives in the output template");
have_error = 1;
}
printf ("};\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