2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-10 04:20:29 +08:00

gimplify.c (gimplify_expr): Remove local variables r0 and r1.

* gimplify.c (gimplify_expr): Remove local variables r0 and
	r1.

From-SVN: r96344
This commit is contained in:
Kazu Hirata 2005-03-12 18:33:25 +00:00 committed by Kazu Hirata
parent 9386194f13
commit 70e2829d25
2 changed files with 8 additions and 6 deletions

@ -26,6 +26,9 @@
* c-decl.c (c_init_decl_processing): Remove local variables
ptr_ftype_void and ptr_ftype_ptr.
* gimplify.c (gimplify_expr): Remove local variables r0 and
r1.
2005-03-12 Geoffrey Keating <geoffk@apple.com>
* c-lex.c (c_lex_with_flags): Add parameter to call to

@ -4041,12 +4041,11 @@ gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
case WITH_SIZE_EXPR:
{
enum gimplify_status r0, r1;
r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
post_p == &internal_post ? NULL : post_p,
gimple_test_f, fallback);
r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
is_gimple_val, fb_rvalue);
gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
post_p == &internal_post ? NULL : post_p,
gimple_test_f, fallback);
gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
is_gimple_val, fb_rvalue);
}
break;