diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-08-28 20:35:42 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-08-28 20:35:42 +0000 |
commit | eefc72edb9c02055bd244c379761013ff0418c38 (patch) | |
tree | 8213040026ae45b804a8491317ab2c132bbba0b9 /gcc/basic-block.h | |
parent | 7583d99aa7f9fe7d9901d611687c3f6f2fbf60f6 (diff) | |
download | gcc-eefc72edb9c02055bd244c379761013ff0418c38.tar.gz |
inside_basic_block_p requires a const rtx_insn *
gcc/
2014-08-28 David Malcolm <dmalcolm@redhat.com>
* basic-block.h (inside_basic_block_p): Strengthen param from
const_rtx to const rtx_insn *.
* cfgbuild.c (inside_basic_block_p): Likewise.
From-SVN: r214691
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index a7c88a4d8c1..dd727c2776f 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -822,7 +822,7 @@ extern int flow_find_head_matching_sequence (basic_block, basic_block, extern bool delete_unreachable_blocks (void); extern void update_br_prob_note (basic_block); -extern bool inside_basic_block_p (const_rtx); +extern bool inside_basic_block_p (const rtx_insn *); extern bool control_flow_insn_p (const_rtx); extern rtx_insn *get_last_bb_insn (basic_block); |