re PR middle-end/48601 (ICE in lower_emutls_function_body, at tree-emutls.c:623)

2011-04-15  Martin Jambor  <mjambor@suse.cz>

	PR middle-end/48601
	* tree-emutls.c (lower_emutls_function_body): Call
	cgraph_get_create_node instead of cgraph_get_node.  Do not assert the
	result is non-NULL.

From-SVN: r172512
This commit is contained in:
Martin Jambor 2011-04-15 20:20:46 +02:00 committed by Martin Jambor
parent 0dc33c3c14
commit 8e5837bc11
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2011-04-15 Martin Jambor <mjambor@suse.cz>
PR middle-end/48601
* tree-emutls.c (lower_emutls_function_body): Call
cgraph_get_create_node instead of cgraph_get_node. Do not assert the
result is non-NULL.
2011-04-15 Nicola Pero <nicola.pero@meta-innovation.com>
* c-decl.c (detect_field_duplicates): Call

View File

@ -619,8 +619,9 @@ lower_emutls_function_body (struct cgraph_node *node)
d.cfun_node = node;
d.builtin_decl = built_in_decls[BUILT_IN_EMUTLS_GET_ADDRESS];
d.builtin_node = cgraph_get_node (d.builtin_decl);
gcc_checking_assert (d.builtin_node);
/* This is where we introduce the declaration to the IL and so we have to
create a node for it. */
d.builtin_node = cgraph_get_create_node (d.builtin_decl);
FOR_EACH_BB (d.bb)
{