diff options
author | Martin Jambor <mjambor@suse.cz> | 2013-11-13 16:34:47 +0100 |
---|---|---|
committer | Martin Jambor <jamborm@gcc.gnu.org> | 2013-11-13 16:34:47 +0100 |
commit | 6f99e449dbb48a9d7fe2f878cbc836a237acf810 (patch) | |
tree | 6edf9591cd759ae47f7a8a497c6ddf24374e6477 /gcc/cgraph.h | |
parent | 0f365c102f3ae1b5025c0893074ed4a94d3ee295 (diff) | |
download | gcc-6f99e449dbb48a9d7fe2f878cbc836a237acf810.zip gcc-6f99e449dbb48a9d7fe2f878cbc836a237acf810.tar.gz gcc-6f99e449dbb48a9d7fe2f878cbc836a237acf810.tar.bz2 |
cgraph.c (cgraph_get_create_node): Do what cgraph_get_create_real_symbol_node used to do.
2013-11-13 Martin Jambor <mjambor@suse.cz>
* cgraph.c (cgraph_get_create_node): Do what
cgraph_get_create_real_symbol_node used to do.
(cgraph_get_create_real_symbol_node): Removed. Changed all users to
call cgraph_get_create_node.
* cgraph.h (cgraph_get_create_real_symbol_node): Removed.
* lto-streamer-in.c (input_function): Call cgraph_get_node instead of
cgraph_get_create_node. Assert we get a node.
From-SVN: r204748
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index dd99dc8..1ac6dfb 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -635,7 +635,6 @@ struct cgraph_indirect_call_info *cgraph_allocate_init_indirect_info (void); struct cgraph_node * cgraph_create_node (tree); struct cgraph_node * cgraph_create_empty_node (void); struct cgraph_node * cgraph_get_create_node (tree); -struct cgraph_node * cgraph_get_create_real_symbol_node (tree); struct cgraph_node * cgraph_same_body_alias (struct cgraph_node *, tree, tree); struct cgraph_node * cgraph_add_thunk (struct cgraph_node *, tree, tree, bool, HOST_WIDE_INT, HOST_WIDE_INT, tree, tree); |