summaryrefslogtreecommitdiff
path: root/gcc/hash-map.h
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2015-12-14 20:54:17 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2015-12-14 20:54:17 +0000
commitf8f3752147e0722f805fd1063a4b22e69f9740ce (patch)
tree05360f26f61441741762e034d1fa1b831ba0023b /gcc/hash-map.h
parent78d9d5fcd3d21f1281bfec73b8f47b1105b4863a (diff)
downloadgcc-f8f3752147e0722f805fd1063a4b22e69f9740ce.tar.gz
PR c++/68309
gcc/ * hash-table.h: Add copy constructor. * hash-map.h: Add copy constructor. gcc/cp/ * pt.c (instantiate_decl): Copy local_specializations for nested function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@231632 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hash-map.h')
-rw-r--r--gcc/hash-map.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/hash-map.h b/gcc/hash-map.h
index 81ede08e7c7..510353bf4f7 100644
--- a/gcc/hash-map.h
+++ b/gcc/hash-map.h
@@ -111,6 +111,11 @@ public:
CXX_MEM_STAT_INFO)
: m_table (n, ggc, gather_mem_stats, HASH_MAP_ORIGIN PASS_MEM_STAT) {}
+ hash_map (const hash_map &h, bool ggc = false,
+ bool gather_mem_stats = GATHER_STATISTICS CXX_MEM_STAT_INFO)
+ : m_table (h.m_table, ggc, gather_mem_stats,
+ HASH_MAP_ORIGIN PASS_MEM_STAT) {}
+
/* Create a hash_map in ggc memory. */
static hash_map *create_ggc (size_t size,
bool gather_mem_stats = GATHER_STATISTICS