Commit d9931da9 by Richard Biener Committed by Richard Biener

tree-ssa-sccvn.c (vn_lookup_simplify_result): Remove bogus left-over from last patch.

2018-07-12  Richard Biener  <rguenther@suse.de>

	* tree-ssa-sccvn.c (vn_lookup_simplify_result): Remove bogus
	left-over from last patch.

From-SVN: r262578
parent a7fe6482
2018-07-12 Richard Biener <rguenther@suse.de>
* tree-ssa-sccvn.c (vn_lookup_simplify_result): Remove bogus
left-over from last patch.
2018-07-12 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/86492
......
......@@ -1669,17 +1669,8 @@ vn_lookup_simplify_result (gimple_match_op *res_op)
ops[i] = CONSTRUCTOR_ELT (res_op->ops[0], i)->value;
}
vn_nary_op_t vnresult = NULL;
tree res = vn_nary_op_lookup_pieces (length, (tree_code) res_op->code,
res_op->type, ops, &vnresult);
if (res
&& mprts_hook)
{
if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file, "Resetting mprts_hook after too many "
"invocations.\n");
mprts_hook = NULL;
}
return res;
return vn_nary_op_lookup_pieces (length, (tree_code) res_op->code,
res_op->type, ops, &vnresult);
}
/* Return a value-number for RCODE OPS... either by looking up an existing
......
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