Commit 345f4140 by Kyrylo Tkachov Committed by Kyrylo Tkachov

[expmed.c] PR middle-end/77426 Delete duplicate condition in synth_mult

	PR middle-end/77426
	* expmed.c (synth_mult): Delete duplicate mode check.

From-SVN: r240089
parent a14eedf8
2016-09-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR middle-end/77426
* expmed.c (synth_mult): Delete duplicate mode check.
2016-09-10 Tom de Vries <tom@codesourcery.com> 2016-09-10 Tom de Vries <tom@codesourcery.com>
PR C/71602 PR C/71602
......
...@@ -2572,7 +2572,6 @@ synth_mult (struct algorithm *alg_out, unsigned HOST_WIDE_INT t, ...@@ -2572,7 +2572,6 @@ synth_mult (struct algorithm *alg_out, unsigned HOST_WIDE_INT t,
entry_ptr = alg_hash_entry_ptr (hash_index); entry_ptr = alg_hash_entry_ptr (hash_index);
if (entry_ptr->t == t if (entry_ptr->t == t
&& entry_ptr->mode == mode && entry_ptr->mode == mode
&& entry_ptr->mode == mode
&& entry_ptr->speed == speed && entry_ptr->speed == speed
&& entry_ptr->alg != alg_unknown) && entry_ptr->alg != alg_unknown)
{ {
......
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