From 5bee567d896ebb2d4ed1e636855b7e2f71832d54 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Thu, 21 Oct 2004 16:15:15 +0000 Subject: [PATCH] * expr.c (store_expr): Remove dont_store_target. From-SVN: r89383 --- gcc/ChangeLog | 4 ++++ gcc/expr.c | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c46f5e4..95774e2f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2004-10-21 Kazu Hirata + * expr.c (store_expr): Remove dont_store_target. + +2004-10-21 Kazu Hirata + * tree-cfg.c (thread_jumps): Speed up by using a worklist. 2004-10-21 Kazu Hirata diff --git a/gcc/expr.c b/gcc/expr.c index d98de06..7ee692b 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -3754,7 +3754,6 @@ store_expr (tree exp, rtx target, int call_param_p) rtx temp; rtx alt_rtl = NULL_RTX; int dont_return_target = 0; - int dont_store_target = 0; if (VOID_TYPE_P (TREE_TYPE (exp))) { @@ -3901,7 +3900,6 @@ store_expr (tree exp, rtx target, int call_param_p) || (temp != target && (side_effects_p (temp) || side_effects_p (target)))) && TREE_CODE (exp) != ERROR_MARK - && ! dont_store_target /* If store_expr stores a DECL whose DECL_RTL(exp) == TARGET, but TARGET is not valid memory reference, TEMP will differ from TARGET although it is really the same location. */ -- 2.7.4