aboutsummaryrefslogtreecommitdiff
path: root/gcc/symbol-summary.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/symbol-summary.h')
-rw-r--r--gcc/symbol-summary.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/gcc/symbol-summary.h b/gcc/symbol-summary.h
index c0dd5aa..a22352b 100644
--- a/gcc/symbol-summary.h
+++ b/gcc/symbol-summary.h
@@ -39,13 +39,6 @@ public:
function_summary (symbol_table *symtab, bool ggc = false): m_ggc (ggc),
m_map (13, ggc), m_insertion_enabled (true), m_symtab (symtab)
{
- if (flag_checking)
- {
- cgraph_node *node;
- FOR_EACH_FUNCTION (node)
- gcc_assert (node->summary_uid > 0);
- }
-
m_symtab_insertion_hook =
symtab->add_cgraph_insertion_hook
(function_summary::symtab_insertion, this);
@@ -124,6 +117,7 @@ public:
/* Getter for summary callgraph node pointer. */
T* get (cgraph_node *node)
{
+ gcc_checking_assert (node->summary_uid);
return get (node->summary_uid);
}
@@ -148,6 +142,7 @@ public:
/* Symbol insertion hook that is registered to symbol table. */
static void symtab_insertion (cgraph_node *node, void *data)
{
+ gcc_checking_assert (node->summary_uid);
function_summary *summary = (function_summary <T *> *) (data);
if (summary->m_insertion_enabled)