diff options
author | Jan Hubicka <jh@suse.cz> | 2001-05-16 18:54:12 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-05-16 16:54:12 +0000 |
commit | 6e20204ff4046f1309800d18ca62a2ea7173adb3 (patch) | |
tree | ff199174cc9ea62bf99ad6457df875caf7ce5645 /gcc/combine.c | |
parent | 5467baef041885837b8abd2a7f64aef4cf35e954 (diff) | |
download | gcc-6e20204ff4046f1309800d18ca62a2ea7173adb3.zip gcc-6e20204ff4046f1309800d18ca62a2ea7173adb3.tar.gz gcc-6e20204ff4046f1309800d18ca62a2ea7173adb3.tar.bz2 |
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
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 43820b2..a60f92e 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -3706,6 +3706,7 @@ combine_simplify_rtx (x, op0_mode, last, in_dest) { x = apply_distributive_law (x); code = GET_CODE (x); + op0_mode = VOIDmode; } /* If CODE is an associative operation not otherwise handled, see if we |