Commit c954de7f by Richard Biener Committed by Richard Biener

genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded GENERIC expressions in GIMPLE.

2016-03-02  Richard Biener  <rguenther@suse.de>

	* genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
	GENERIC expressions in GIMPLE.

From-SVN: r233902
parent 04c5ee24
2016-03-02 Richard Biener <rguenther@suse.de> 2016-03-02 Richard Biener <rguenther@suse.de>
* genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
GENERIC expressions in GIMPLE.
2016-03-02 Richard Biener <rguenther@suse.de>
* config/i386/i386.c (type_natural_mode): Fix typo. * config/i386/i386.c (type_natural_mode): Fix typo.
2016-03-02 Nick Clifton <nickc@redhat.com> 2016-03-02 Nick Clifton <nickc@redhat.com>
......
...@@ -2615,7 +2615,7 @@ dt_node::gen_kids (FILE *f, int indent, bool gimple) ...@@ -2615,7 +2615,7 @@ dt_node::gen_kids (FILE *f, int indent, bool gimple)
preds.safe_push (op); preds.safe_push (op);
else else
{ {
if (gimple) if (gimple && !e->is_generic)
gimple_exprs.safe_push (op); gimple_exprs.safe_push (op);
else else
generic_exprs.safe_push (op); generic_exprs.safe_push (op);
......
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