From a2058f5812bea3673859a68f9bfea61dbce6730f Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Tue, 3 Nov 2020 20:31:23 +0100 Subject: [PATCH] Add missing non-NULL check in cgraphclones 2020-11-03 Jan Hubicka PR ipa/97698 * cgraphclones.c (duplicate_thunk_for_node): Check that info is non-NULL. --- gcc/cgraphclones.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cgraphclones.c b/gcc/cgraphclones.c index b5793f9..36ca647 100644 --- a/gcc/cgraphclones.c +++ b/gcc/cgraphclones.c @@ -239,7 +239,7 @@ duplicate_thunk_for_node (cgraph_node *thunk, cgraph_node *node) new_thunk->thunk = thunk->thunk; new_thunk->unique_name = in_lto_p; new_thunk->former_clone_of = thunk->decl; - if (info->param_adjustments) + if (info && info->param_adjustments) clone_info::get_create (new_thunk)->param_adjustments = info->param_adjustments; new_thunk->unit_id = thunk->unit_id; -- 2.7.4