From 47aaf6e6cb103ab06e8fd6bb7d326d41d16eefa1 Mon Sep 17 00:00:00 2001 From: dnovillo Date: Fri, 7 Sep 2007 16:38:46 +0000 Subject: * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128246 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cfghooks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/cfghooks.c') diff --git a/gcc/cfghooks.c b/gcc/cfghooks.c index 921bf6fe291..f5fb18f0875 100644 --- a/gcc/cfghooks.c +++ b/gcc/cfghooks.c @@ -616,7 +616,7 @@ create_empty_bb (basic_block after) /* Checks whether we may merge blocks BB1 and BB2. */ bool -can_merge_blocks_p (const_basic_block bb1, const_basic_block bb2) +can_merge_blocks_p (basic_block bb1, basic_block bb2) { bool ret; @@ -938,7 +938,7 @@ duplicate_block (basic_block bb, edge e, basic_block after) instructions that must stay with the call, 0 otherwise. */ bool -block_ends_with_call_p (const_basic_block bb) +block_ends_with_call_p (basic_block bb) { if (!cfg_hooks->block_ends_with_call_p) internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name); -- cgit v1.2.1