Commit 23750d7f by Ben Elliston Committed by Ben Elliston

genrecog.c (validate_pattern): Do not warn for VOIDmode CALLs as the source of a set operation.

	* genrecog.c (validate_pattern): Do not warn for VOIDmode CALLs as
	the source of a set operation.

From-SVN: r146757
parent e6ff3083
2009-04-25 Ben Elliston <bje@au.ibm.com>
* genrecog.c (validate_pattern): Do not warn for VOIDmode CALLs as
the source of a set operation.
2009-04-25 Anatoly Sokolov <aesok@post.ru>
* target.h (struct gcc_target): Add case_values_threshold field.
......
......@@ -793,7 +793,8 @@ validate_pattern (rtx pattern, rtx insn, rtx set, int set_code)
&& GET_CODE (dest) != CC0
&& GET_CODE (src) != PC
&& GET_CODE (src) != CC0
&& GET_CODE (src) != CONST_INT)
&& GET_CODE (src) != CONST_INT
&& GET_CODE (src) != CALL)
{
const char *which;
which = (dmode == VOIDmode ? "destination" : "source");
......
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