diff options
author | Jan Hubicka <jh@suse.cz> | 2001-05-18 23:04:56 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-05-18 21:04:56 +0000 |
commit | eb47ec1b6974e63d97f315ca0779e75839432182 (patch) | |
tree | 9434c9d7d30bb6ee128049800c0e2db379ba5a9e /gcc/combine.c | |
parent | 070ef6f4c41ea9bf4de0fde93860d7e65d8a186c (diff) | |
download | gcc-eb47ec1b6974e63d97f315ca0779e75839432182.zip gcc-eb47ec1b6974e63d97f315ca0779e75839432182.tar.gz gcc-eb47ec1b6974e63d97f315ca0779e75839432182.tar.bz2 |
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
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index ceb6dc7..11ef550 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -3693,7 +3693,7 @@ combine_simplify_rtx (x, op0_mode, last, in_dest) } 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. */ if (code == PLUS || code == MINUS |