diff options
author | Bernd Schmidt <bernds@cygnus.co.uk> | 1999-11-29 17:35:07 +0000 |
---|---|---|
committer | Bernd Schmidt <crux@gcc.gnu.org> | 1999-11-29 17:35:07 +0000 |
commit | b901ec947a446c7a85516472885fc93438a04b37 (patch) | |
tree | 57739ef62cf93a5f572518e8a8514410bfa16452 /gcc/fold-const.c | |
parent | 7762d54ea89cea7f76fb00de5d490bb5465fb0fe (diff) | |
download | gcc-b901ec947a446c7a85516472885fc93438a04b37.zip gcc-b901ec947a446c7a85516472885fc93438a04b37.tar.gz gcc-b901ec947a446c7a85516472885fc93438a04b37.tar.bz2 |
Delete unused vars.
From-SVN: r30706
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 5ce6212..970d58c 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1274,8 +1274,6 @@ split_tree (in, code, conp, litp, negate_p) tree *conp, *litp; int negate_p; { - tree orig_in = in; - tree type = TREE_TYPE (in); tree var = 0; *conp = 0; @@ -1353,8 +1351,6 @@ associate_trees (t1, t2, code, type) enum tree_code code; tree type; { - tree tem; - if (t1 == 0) return t2; else if (t2 == 0) @@ -4276,8 +4272,6 @@ extract_muldiv (t, c, code, wide_type) ? wide_type : type); tree t1, t2; int same_p = tcode == code; - int cancel_p - = (code == MULT_EXPR && tcode == EXACT_DIV_EXPR) || tcode == MULT_EXPR; tree op0, op1; /* Don't deal with constants of zero here; they confuse the code below. */ |