diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-09-06 10:13:37 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-09-06 10:13:37 +0000 |
commit | e9de52cc3cd2a99d4962779add31ebc9243a98ad (patch) | |
tree | e167b438c335f3bc2a8367366839e99f406f78e4 /gcc/cgraph.h | |
parent | ea03e543c51716b7e3e868ca8c54f308cdf59fd5 (diff) | |
download | gcc-e9de52cc3cd2a99d4962779add31ebc9243a98ad.tar.gz |
PR middle-end/58094
* cgraph.h (symtab_semantically_equivalent_p): Declare.
* tree-tailcall.c: Include ipa-utils.h.
(find_tail_calls): Use it.
* ipa-pure-const.c (check_call): Likewise.
* ipa-utils.c (recursive_call_p): New function.
* ipa-utils.h (recursive_call_p): Dclare.
* symtab.c (symtab_nonoverwritable_alias): Fix formatting.
(symtab_semantically_equivalent_p): New function.
* Makefile.in (tree-tailcall.o): Update dependencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@202316 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index ea8a04dbd19..5a7a949061f 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -627,6 +627,7 @@ bool symtab_for_node_and_aliases (symtab_node, bool); symtab_node symtab_nonoverwritable_alias (symtab_node); enum availability symtab_node_availability (symtab_node); +bool symtab_semantically_equivalent_p (symtab_node, symtab_node); /* In cgraph.c */ void dump_cgraph (FILE *); |