Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
951c9e90
Commit
951c9e90
authored
Dec 15, 2015
by
Jason Merrill
Committed by
Jason Merrill
Dec 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* hash-map.h, hash-table.h: Make copy constructors explicit.
From-SVN: r231658
parent
57e8ab24
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
6 deletions
+11
-6
gcc/ChangeLog
+4
-0
gcc/hash-map.h
+3
-2
gcc/hash-table.h
+4
-4
No files found.
gcc/ChangeLog
View file @
951c9e90
2015
-
12
-
15
Jason
Merrill
<
jason
@
redhat
.
com
>
*
hash
-
map
.
h
,
hash
-
table
.
h
:
Make
copy
constructors
explicit
.
2015
-
12
-
15
Ilya
Verbin
<
ilya
.
verbin
@
intel
.
com
>
*
cgraphunit
.
c
(
output_in_order
):
Do
not
assemble
"omp declare target
gcc/hash-map.h
View file @
951c9e90
...
...
@@ -111,8 +111,9 @@ 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
)
explicit
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
)
{}
...
...
gcc/hash-table.h
View file @
951c9e90
...
...
@@ -365,10 +365,10 @@ public:
bool
gather_mem_stats
=
GATHER_STATISTICS
,
mem_alloc_origin
origin
=
HASH_TABLE_ORIGIN
CXX_MEM_STAT_INFO
);
hash_table
(
const
hash_table
&
,
bool
ggc
=
false
,
bool
gather_mem_stats
=
GATHER_STATISTICS
,
mem_alloc_origin
origin
=
HASH_TABLE_ORIGIN
CXX_MEM_STAT_INFO
);
explicit
hash_table
(
const
hash_table
&
,
bool
ggc
=
false
,
bool
gather_mem_stats
=
GATHER_STATISTICS
,
mem_alloc_origin
origin
=
HASH_TABLE_ORIGIN
CXX_MEM_STAT_INFO
);
~
hash_table
();
/* Create a hash_table in gc memory. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment