* fold-const.c (fold_checksum_tree): Fix typo in previous patch.

From-SVN: r212566
This commit is contained in:
Jan Hubicka 2014-07-15 17:49:11 +02:00 committed by Jan Hubicka
parent c99c885ee1
commit 6259a78ac3
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-07-14 Jan Hubicka <hubicka@ucw.cz>
* fold-const.c (fold_checksum_tree): Fix typo in previous patch.
2014-07-15 Bernd Schmidt <bernds@codesourcery.com>
* asan.c (asan_finish_file): Use varpool_finalize_decl instead of

View File

@ -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);
}