Commit eb47ec1b by Jan Hubicka Committed by Jan Hubicka

combine.c (combine_simplify_rtx): Clear op0_mode if simplification suceeded.

	* combine.c (combine_simplify_rtx): Clear op0_mode if simplification
	suceeded.

From-SVN: r42286
parent 070ef6f4
Fri May 18 22:42:04 CEST 2001 Jan Hubicka <jh@suse.cz>
* combine.c (combine_simplify_rtx): Clear op0_mode if simplification
suceeded.
Fri May 18 07:26:34 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Fri May 18 07:26:34 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* genrecog.c (enum decision_type): Add DT_elt_zero-wide_safe. * genrecog.c (enum decision_type): Add DT_elt_zero-wide_safe.
......
...@@ -3693,7 +3693,7 @@ combine_simplify_rtx (x, op0_mode, last, in_dest) ...@@ -3693,7 +3693,7 @@ combine_simplify_rtx (x, op0_mode, last, in_dest)
} }
if (temp) if (temp)
x = temp, code = GET_CODE (temp); x = temp, code = GET_CODE (temp), op0_mode = VOIDmode;
/* First see if we can apply the inverse distributive law. */ /* First see if we can apply the inverse distributive law. */
if (code == PLUS || code == MINUS if (code == PLUS || code == MINUS
......
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