diff options
author | Steve Ellcey <sellcey@mips.com> | 2014-01-09 21:02:43 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2014-01-09 21:02:43 +0000 |
commit | 3fadf78ac801aab49b8863e79d4c74e5ff7c2a83 (patch) | |
tree | 00bf531c44e674f421bcf5d9415dff5ac1b71811 /gcc/hash-table.h | |
parent | 7f216cb2693e67a1732b9610eb85bf0b6c2cd0bb (diff) | |
download | gcc-3fadf78ac801aab49b8863e79d4c74e5ff7c2a83.tar.gz |
Makefile.in (TREE_FLOW_H): Remove.
2014-01-09 Steve Ellcey <sellcey@mips.com>
* Makefile.in (TREE_FLOW_H): Remove.
(TREE_SSA_H): Add file names from tree-flow.h.
* doc/tree-ssa.texi (Annotations): Remove reference to tree-flow.h
* tree.h: Remove tree-flow.h reference.
* hash-table.h: Remove tree-flow.h reference.
* tree-ssa-loop-niter.c (dump_affine_iv): Replace tree-flow.h
reference with tree-ssa-loop.h.
From-SVN: r206496
Diffstat (limited to 'gcc/hash-table.h')
-rw-r--r-- | gcc/hash-table.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/hash-table.h b/gcc/hash-table.h index 2b04067f74a..034385c19f2 100644 --- a/gcc/hash-table.h +++ b/gcc/hash-table.h @@ -1050,10 +1050,7 @@ hash_table <Descriptor, Allocator>::end () /* Iterate through the elements of hash_table HTAB, using hash_table <....>::iterator ITER, - storing each element in RESULT, which is of type TYPE. - - This macro has this form for compatibility with the - FOR_EACH_HTAB_ELEMENT currently defined in tree-flow.h. */ + storing each element in RESULT, which is of type TYPE. */ #define FOR_EACH_HASH_TABLE_ELEMENT(HTAB, RESULT, TYPE, ITER) \ for ((ITER) = (HTAB).begin (); \ |