summaryrefslogtreecommitdiffstats
path: root/gcc/ipa-type-escape.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ipa-type-escape.c')
-rw-r--r--gcc/ipa-type-escape.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/gcc/ipa-type-escape.c b/gcc/ipa-type-escape.c
index a06bb1d4040..af0c2a405ba 100644
--- a/gcc/ipa-type-escape.c
+++ b/gcc/ipa-type-escape.c
@@ -1349,13 +1349,10 @@ analyze_variable (struct cgraph_varpool_node *vnode)
if (vnode->externally_visible)
mark_interesting_type (type, FULL_ESCAPE);
- if (TREE_CODE (global) == VAR_DECL)
- {
- if (DECL_INITIAL (global))
- walk_tree (&DECL_INITIAL (global), scan_for_refs,
- NULL, visited_nodes);
- }
- else abort();
+ gcc_assert (TREE_CODE (global) == VAR_DECL);
+
+ if (DECL_INITIAL (global))
+ walk_tree (&DECL_INITIAL (global), scan_for_refs, NULL, visited_nodes);
}
/* This is the main routine for finding the reference patterns for
OpenPOWER on IntegriCloud