diff options
author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-09 21:02:43 +0000 |
---|---|---|
committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-09 21:02:43 +0000 |
commit | f6d8a42a0d426da7138833cbf0727df58f28725b (patch) | |
tree | 00bf531c44e674f421bcf5d9415dff5ac1b71811 /gcc/hash-table.h | |
parent | 1ce10158fc9e5873264fcd75991bd7380e9f73b2 (diff) | |
download | gcc-f6d8a42a0d426da7138833cbf0727df58f28725b.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206496 138bc75d-0d04-0410-961f-82ee72b054a4
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 (); \ |