From: H.J. Lu Date: Mon, 10 Jan 2011 13:24:27 +0000 (+0000) Subject: Check e->call_stmt before calling gimple_call_set_cannot_inline. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=94cd932caeac5f720dd5a5f78583a5eaea456c6c;p=gcc.git Check e->call_stmt before calling gimple_call_set_cannot_inline. 2011-01-10 H.J. Lu PR lto/46760 * tree-inline.c (tree_can_inline_p): Check e->call_stmt before calling gimple_call_set_cannot_inline. From-SVN: r168631 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 12b7efc5466..a07601f8dd8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-01-10 H.J. Lu + + PR lto/46760 + * tree-inline.c (tree_can_inline_p): Check e->call_stmt before + calling gimple_call_set_cannot_inline. + 2011-01-10 Iain Sandoe * config/darwin-sections.def: Remove unused section. diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 8725ca41953..6c76fe3b994 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -5380,7 +5380,8 @@ tree_can_inline_p (struct cgraph_edge *e) if (inline_forbidden_into_p (caller, callee)) { e->inline_failed = CIF_UNSPECIFIED; - gimple_call_set_cannot_inline (e->call_stmt, true); + if (e->call_stmt) + gimple_call_set_cannot_inline (e->call_stmt, true); return false; } @@ -5388,7 +5389,8 @@ tree_can_inline_p (struct cgraph_edge *e) if (!targetm.target_option.can_inline_p (caller, callee)) { e->inline_failed = CIF_TARGET_OPTION_MISMATCH; - gimple_call_set_cannot_inline (e->call_stmt, true); + if (e->call_stmt) + gimple_call_set_cannot_inline (e->call_stmt, true); e->call_stmt_cannot_inline_p = true; return false; } @@ -5405,7 +5407,8 @@ tree_can_inline_p (struct cgraph_edge *e) || !gimple_check_call_args (e->call_stmt))) { e->inline_failed = CIF_MISMATCHED_ARGUMENTS; - gimple_call_set_cannot_inline (e->call_stmt, true); + if (e->call_stmt) + gimple_call_set_cannot_inline (e->call_stmt, true); e->call_stmt_cannot_inline_p = true; return false; }