diff options
author | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-10 16:43:24 +0000 |
---|---|---|
committer | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-10 16:43:24 +0000 |
commit | 9967e5788288c309ee49b4f623b58b1f09dcea7e (patch) | |
tree | 90cc0fca074e90dc760793f98ca919ecb2a337a6 /gcc/cgraph.h | |
parent | 33a0b99de74c4501be779f6b694100b45e6bcc45 (diff) | |
download | gcc-9967e5788288c309ee49b4f623b58b1f09dcea7e.tar.gz |
2009-06-10 Martin Jambor <mjambor@suse.cz>
* cgraph.c (cgraph_node_can_be_local_p): New function.
(cgraph_make_node_local): New function.
* cgraph.h (cgraph_node_can_be_local_p): Declare.
(cgraph_make_node_local): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148349 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 1f05eedf698..bf3f320e4f3 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -505,6 +505,8 @@ void dump_varpool_node (FILE *, struct varpool_node *); void varpool_finalize_decl (tree); bool decide_is_variable_needed (struct varpool_node *, tree); enum availability cgraph_variable_initializer_availability (struct varpool_node *); +void cgraph_make_node_local (struct cgraph_node *); +bool cgraph_node_can_be_local_p (struct cgraph_node *); bool varpool_assemble_pending_decls (void); bool varpool_assemble_decl (struct varpool_node *node); |