diff options
author | Jason Merrill <jason@redhat.com> | 2020-12-11 14:35:20 -0500 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2020-12-11 15:39:38 -0500 |
commit | 8bab7dce62e321e722346ba2db2d381bdf3fbe4b (patch) | |
tree | d9b496066e1606407776b0e3b1d3f3c8f8da649f | |
parent | 262784be3dcf91a712502b1f4f73e72155171f20 (diff) | |
download | gcc-8bab7dce62e321e722346ba2db2d381bdf3fbe4b.zip gcc-8bab7dce62e321e722346ba2db2d381bdf3fbe4b.tar.gz gcc-8bab7dce62e321e722346ba2db2d381bdf3fbe4b.tar.bz2 |
c++: Fix build with --enable-gather-detailed-mem-stats.
Nathan's recent patch added make_binding_vec defined with MEM_STAT_DECL, but
didn't add the parallel decoration to the forward declaration.
gcc/cp/ChangeLog:
* cp-tree.h (make_binding_vec): Add CXX_MEM_STAT_INFO.
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index f2a01d2..ef5baea 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -7626,7 +7626,7 @@ extern tree hash_tree_cons (tree, tree, tree); extern tree hash_tree_chain (tree, tree); extern tree build_qualified_name (tree, tree, tree, bool); extern tree build_ref_qualified_type (tree, cp_ref_qualifier); -extern tree make_binding_vec (tree, unsigned clusters); +extern tree make_binding_vec (tree, unsigned clusters CXX_MEM_STAT_INFO); inline tree ovl_first (tree) ATTRIBUTE_PURE; extern tree ovl_make (tree fn, tree next = NULL_TREE); |