diff options
author | Jeffrey A Law <law@cygnus.com> | 2000-01-14 11:21:22 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-01-14 04:21:22 -0700 |
commit | 414094ded1661774994528bbb26d9aafad833132 (patch) | |
tree | afa5c55935b64fde4a34af53941e56fcc81d5f35 /gcc/flow.c | |
parent | 254a8f0dbe961f94d6e23ae7ba013afd67dfc7a0 (diff) | |
download | gcc-414094ded1661774994528bbb26d9aafad833132.zip gcc-414094ded1661774994528bbb26d9aafad833132.tar.gz gcc-414094ded1661774994528bbb26d9aafad833132.tar.bz2 |
flow.c (split_edge): Do not call set_block_for_insn if we do not have a basic_block_for_insn structure.
* flow.c (split_edge): Do not call set_block_for_insn if we
do not have a basic_block_for_insn structure.
From-SVN: r31410
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1387,7 +1387,8 @@ split_edge (edge_in) pos = emit_jump_insn_after (gen_jump (old_succ->head), jump_block->end); jump_block->end = pos; - set_block_for_insn (pos, jump_block); + if (basic_block_for_insn) + set_block_for_insn (pos, jump_block); emit_barrier_after (pos); /* ... let jump know that label is in use, ... */ |