Commit 6e20204f by Jan Hubicka Committed by Jan Hubicka

combine.c (combine_simplify_rtx): Set op0_mode to VOIDmode after applying distributive law.


	* combine.c (combine_simplify_rtx): Set op0_mode to VOIDmode after
	applying distributive law.

From-SVN: r42159
parent 5467baef
Wed May 16 18:53:23 CEST 2001 Jan Hubicka <jh@suse.cz>
* combine.c (combine_simplify_rtx): Set op0_mode to VOIDmode after
applying distributive law.
2001-05-16 John David Anglin <dave@hiauly1.hia.nrc.ca> 2001-05-16 John David Anglin <dave@hiauly1.hia.nrc.ca>
* pa-hpux10.h (THREAD_MODEL_SPEC): Define. * pa-hpux10.h (THREAD_MODEL_SPEC): Define.
......
...@@ -3706,6 +3706,7 @@ combine_simplify_rtx (x, op0_mode, last, in_dest) ...@@ -3706,6 +3706,7 @@ combine_simplify_rtx (x, op0_mode, last, in_dest)
{ {
x = apply_distributive_law (x); x = apply_distributive_law (x);
code = GET_CODE (x); code = GET_CODE (x);
op0_mode = VOIDmode;
} }
/* If CODE is an associative operation not otherwise handled, see if we /* If CODE is an associative operation not otherwise handled, see if we
......
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