diff options
| author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-16 16:54:12 +0000 |
|---|---|---|
| committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-16 16:54:12 +0000 |
| commit | cc566b643545a4eaa57eb897217649264f72c2e2 (patch) | |
| tree | ff199174cc9ea62bf99ad6457df875caf7ce5645 /gcc | |
| parent | 501b786ec832ca73fa81e748296ea12884460a82 (diff) | |
| download | ppe42-gcc-cc566b643545a4eaa57eb897217649264f72c2e2.tar.gz ppe42-gcc-cc566b643545a4eaa57eb897217649264f72c2e2.zip | |
* combine.c (combine_simplify_rtx): Set op0_mode to VOIDmode after
applying distributive law.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42159 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/combine.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f49f7529645..73b3fd2bed4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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> * pa-hpux10.h (THREAD_MODEL_SPEC): Define. diff --git a/gcc/combine.c b/gcc/combine.c index 43820b244a7..a60f92e6eec 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 |

