* gimplify.c (internal_get_tmp_var): Remove unused var CLASS.

From-SVN: r87088
This commit is contained in:
Richard Kenner 2004-09-04 18:24:15 +00:00 committed by Richard Kenner
parent 8f1529e685
commit 875803a092
2 changed files with 2 additions and 3 deletions

View File

@ -1,9 +1,10 @@
2004-09-04 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.
2004-09-04 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* gimplify.c (internal_get_tmp_var): Remove unused var CLASS.
* tree.c (save_expr): No longer TREE_READONLY.
* fold-const.c (operand_equal_p): Remove code to allow null ARG0/1.

View File

@ -463,7 +463,6 @@ static tree
internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
{
tree t, mod;
char class;
gimplify_expr (&val, pre_p, post_p, is_gimple_formal_tmp_rhs, fb_rvalue);
@ -471,7 +470,6 @@ internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
mod = build (MODIFY_EXPR, TREE_TYPE (t), t, val);
class = TREE_CODE_CLASS (TREE_CODE (val));
if (EXPR_HAS_LOCATION (val))
SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
else