diff options
Diffstat (limited to 'gcc/cfglayout.c')
-rw-r--r-- | gcc/cfglayout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfglayout.c b/gcc/cfglayout.c index 25349658355..aa79d6ec549 100644 --- a/gcc/cfglayout.c +++ b/gcc/cfglayout.c @@ -907,7 +907,7 @@ cfg_layout_can_duplicate_bb_p (basic_block bb) rtx insn = BB_HEAD (bb); while (1) { - if (INSN_P (insn) && (*targetm.cannot_copy_insn_p) (insn)) + if (INSN_P (insn) && targetm.cannot_copy_insn_p (insn)) return false; if (insn == BB_END (bb)) break; |