From 6259a78ac3093f0823011ac40542b0a3f356fe28 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Tue, 15 Jul 2014 17:49:11 +0200 Subject: [PATCH] * fold-const.c (fold_checksum_tree): Fix typo in previous patch. From-SVN: r212566 --- gcc/ChangeLog | 4 ++++ gcc/fold-const.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1b7b273cd51..f120011b928 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-07-14 Jan Hubicka + + * fold-const.c (fold_checksum_tree): Fix typo in previous patch. + 2014-07-15 Bernd Schmidt * asan.c (asan_finish_file): Use varpool_finalize_decl instead of diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 455994cd3fc..54322bf94b5 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -14862,7 +14862,7 @@ fold_checksum_tree (const_tree expr, struct md5_ctx *ctx, if (TREE_CODE (expr) == FUNCTION_DECL) { fold_checksum_tree (DECL_VINDEX (expr), ctx, ht); - fold_checksum_tree (DECL_ARGUMENT (expr), ctx, ht); + fold_checksum_tree (DECL_ARGUMENTS (expr), ctx, ht); } fold_checksum_tree (DECL_RESULT_FLD (expr), ctx, ht); } -- 2.30.2