summaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-18 21:04:56 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-18 21:04:56 +0000
commit9c95d86450e60738b5ef928468a3607549de20c8 (patch)
tree9434c9d7d30bb6ee128049800c0e2db379ba5a9e /gcc/combine.c
parent3164740afa7beae437addc59a72f62dcc159593c (diff)
downloadgcc-9c95d86450e60738b5ef928468a3607549de20c8.tar.gz
* combine.c (combine_simplify_rtx): Clear op0_mode if simplification
suceeded. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42286 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index ceb6dc77b76..11ef550c9b5 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