aboutsummaryrefslogtreecommitdiff
path: root/gcc/passes.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-02-13 03:58:21 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-02-13 03:58:21 +0000
commitea24f64b78f5f045cb08101978688c5c59d71621 (patch)
tree9de82aee220e980d7a72acdaac33786c6ae7edd6 /gcc/passes.c
parent6f9087d7fb321d7a48df203cfb72d3ded5f6109d (diff)
downloadgcc-ea24f64b78f5f045cb08101978688c5c59d71621.zip
gcc-ea24f64b78f5f045cb08101978688c5c59d71621.tar.gz
gcc-ea24f64b78f5f045cb08101978688c5c59d71621.tar.bz2
passes.c (rest_of_handle_gcse): Remove dead assignments to tem and tem2.
* passes.c (rest_of_handle_gcse): Remove dead assignments to tem and tem2. From-SVN: r94967
Diffstat (limited to 'gcc/passes.c')
-rw-r--r--gcc/passes.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/passes.c b/gcc/passes.c
index 185699e..e9a4fa5 100644
--- a/gcc/passes.c
+++ b/gcc/passes.c
@@ -1051,7 +1051,6 @@ rest_of_handle_gcse (void)
things up. Then possibly re-run CSE again. */
if (tem || tem2)
{
- tem = tem2 = 0;
timevar_push (TV_JUMP);
rebuild_jump_labels (get_insns ());
cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);