diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2014-07-15 17:49:11 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2014-07-15 15:49:11 +0000 |
commit | 6259a78ac3093f0823011ac40542b0a3f356fe28 (patch) | |
tree | 5c1ec5d97bdcff73fe8d3e6c21f7ac8115f095c6 /gcc/fold-const.c | |
parent | c99c885ee1169c193554bba2c5dc98c542a8b54d (diff) | |
download | gcc-6259a78ac3093f0823011ac40542b0a3f356fe28.zip gcc-6259a78ac3093f0823011ac40542b0a3f356fe28.tar.gz gcc-6259a78ac3093f0823011ac40542b0a3f356fe28.tar.bz2 |
* fold-const.c (fold_checksum_tree): Fix typo in previous patch.
From-SVN: r212566
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 455994c..54322bf 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); } |