diff options
author | Diego Novillo <dnovillo@google.com> | 2007-09-07 12:38:46 -0400 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2007-09-07 12:38:46 -0400 |
commit | b48d0358542ad050257172d48202f6d59c2d5233 (patch) | |
tree | 64b3c5dbf6e7dd437d93c22279822b894ac0ccce /gcc/tree-flow.h | |
parent | 7c45aad5e61c65820606cf8db78bf15d876b2578 (diff) | |
download | gcc-b48d0358542ad050257172d48202f6d59c2d5233.zip gcc-b48d0358542ad050257172d48202f6d59c2d5233.tar.gz gcc-b48d0358542ad050257172d48202f6d59c2d5233.tar.bz2 |
tree-flow.h (const_block_stmt_iterator): Remove.
* tree-flow.h (const_block_stmt_iterator): Remove.
Update all users to use block_stmt_iterator.
* tree-iterator.h (const_tree_stmt_iterator): Remove.
Update all users to use tree_stmt_iterator.
From-SVN: r128246
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 83956a1..636a6f0 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -624,15 +624,8 @@ typedef struct { basic_block bb; } block_stmt_iterator; -typedef struct { - const_tree_stmt_iterator tsi; - const_basic_block bb; -} const_block_stmt_iterator; - static inline block_stmt_iterator bsi_start (basic_block); -static inline const_block_stmt_iterator cbsi_start (const_basic_block); static inline block_stmt_iterator bsi_last (basic_block); -static inline const_block_stmt_iterator cbsi_last (const_basic_block); static inline block_stmt_iterator bsi_after_labels (basic_block); block_stmt_iterator bsi_for_stmt (tree); static inline bool bsi_end_p (block_stmt_iterator); @@ -965,7 +958,7 @@ extern bool vect_can_force_dr_alignment_p (const_tree, unsigned int); extern tree get_vectype_for_scalar_type (tree); /* In tree-ssa-phiopt.c */ -bool empty_block_p (const_basic_block); +bool empty_block_p (basic_block); basic_block *blocks_in_phiopt_order (void); /* In tree-ssa-loop*.c */ |