mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 17:21:07 +08:00
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:
parent
0dc33c3c14
commit
8e5837bc11
@ -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
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user