diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-02-10 15:13:54 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-02-10 15:13:54 +0000 |
commit | 8cff878b277f9af6c2827a87581baac5f768e12a (patch) | |
tree | d4e178503efd243eed24ff3b753cd998370d75d4 /gcc/symtab.c | |
parent | 9610b14f8599a9db94822d3f0923b58b2f1177dc (diff) | |
download | gcc-8cff878b277f9af6c2827a87581baac5f768e12a.tar.gz |
[./]
2016-02-10 Basile Starynkevitch <basile@starynkevitch.net>
{{merging with some of GCC 6, using
svn merge -r222130:226090 ^/trunk ; UNSTABLE}}
[gcc/]
2016-02-10 Basile Starynkevitch <basile@starynkevitch.net>
{{ merging with trunk 226090 ; UNSTABLE }}
* melt-run.proto.h: include tree-ssa-scopedtables.h
* tree-ssa-dom.c: skip second record_edge_info
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@233272 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/symtab.c')
-rw-r--r-- | gcc/symtab.c | 31 |
1 files changed, 6 insertions, 25 deletions
diff --git a/gcc/symtab.c b/gcc/symtab.c index 156fa3d9f28..756a62d8c7b 100644 --- a/gcc/symtab.c +++ b/gcc/symtab.c @@ -21,41 +21,22 @@ along with GCC; see the file COPYING3. If not see #include "config.h" #include "system.h" #include "coretypes.h" -#include "tm.h" +#include "backend.h" +#include "tree.h" +#include "gimple.h" #include "rtl.h" -#include "hash-set.h" -#include "machmode.h" -#include "vec.h" -#include "double-int.h" -#include "input.h" #include "alias.h" -#include "symtab.h" -#include "wide-int.h" -#include "inchash.h" -#include "tree.h" #include "fold-const.h" #include "print-tree.h" #include "varasm.h" -#include "hashtab.h" -#include "hard-reg-set.h" -#include "input.h" -#include "function.h" #include "emit-rtl.h" -#include "predict.h" -#include "basic-block.h" -#include "tree-ssa-alias.h" #include "internal-fn.h" -#include "gimple-expr.h" -#include "is-a.h" -#include "gimple.h" #include "tree-inline.h" #include "langhooks.h" -#include "hash-map.h" -#include "plugin-api.h" -#include "ipa-ref.h" #include "cgraph.h" #include "diagnostic.h" #include "timevar.h" +#include "target.h" #include "lto-streamer.h" #include "output.h" #include "ipa-utils.h" @@ -1889,7 +1870,7 @@ symtab_node::call_for_symbol_and_aliases_1 (bool (*callback) (symtab_node *, return false; } -/* Return ture if address of N is possibly compared. */ +/* Return true if address of N is possibly compared. */ static bool address_matters_1 (symtab_node *n, void *) @@ -1917,7 +1898,7 @@ symtab_node::address_matters_p () return call_for_symbol_and_aliases (address_matters_1, NULL, true); } -/* Return ture if symbol's alignment may be increased. */ +/* Return true if symbol's alignment may be increased. */ bool symtab_node::can_increase_alignment_p (void) |