diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-02-15 18:36:56 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-02-15 18:36:56 +0000 |
commit | 22bbc9c164eb04c620a5c5b24c9a251178de83d6 (patch) | |
tree | 53ebfd9d30fafb90487431030f008a428663b012 /gcc/cgraph.h | |
parent | 970270ba38a5141c78ff246acda38e60fe70ea82 (diff) | |
download | gcc-22bbc9c164eb04c620a5c5b24c9a251178de83d6.tar.gz |
PR debug/47106
PR debug/47402
* cgraph.h (compute_inline_parameters): Return void.
* ipa-inline.c (compute_inline_parameters): Adjust.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170188 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 34881502fb3..c00418d5888 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -769,7 +769,7 @@ varpool_next_static_initializer (struct varpool_node *node) /* In ipa-inline.c */ void cgraph_clone_inlined_nodes (struct cgraph_edge *, bool, bool); -unsigned int compute_inline_parameters (struct cgraph_node *); +void compute_inline_parameters (struct cgraph_node *); /* Create a new static variable of type TYPE. */ |