diff options
Diffstat (limited to 'gcc/tree-chkp.c')
-rw-r--r-- | gcc/tree-chkp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-chkp.c b/gcc/tree-chkp.c index ebb9a83..288470b 100644 --- a/gcc/tree-chkp.c +++ b/gcc/tree-chkp.c @@ -1071,7 +1071,8 @@ static basic_block chkp_get_entry_block (void) { if (!entry_block) - entry_block = split_block (ENTRY_BLOCK_PTR_FOR_FN (cfun), NULL)->dest; + entry_block + = split_block_after_labels (ENTRY_BLOCK_PTR_FOR_FN (cfun))->dest; return entry_block; } |