re PR middle-end/61243 (verify_flow_info failed: No region crossing jump at section boundary in bb 65)
gcc/ PR rtl-optimization/61243 * emit-rtl.c (emit_copy_of_insn_after): Copy CROSSING_JUMP_P. From-SVN: r210658
This commit is contained in:
parent
2b5f089527
commit
ec27069c86
|
@ -1,3 +1,8 @@
|
|||
2014-05-20 Richard Sandiford <rdsandiford@googlemail.com>
|
||||
|
||||
PR rtl-optimization/61243
|
||||
* emit-rtl.c (emit_copy_of_insn_after): Copy CROSSING_JUMP_P.
|
||||
|
||||
2014-05-20 Xinliang David Li <davidxl@google.com>
|
||||
|
||||
* cgraphunit.c (walk_polymorphic_call_targets): Add
|
||||
|
|
|
@ -6027,6 +6027,7 @@ emit_copy_of_insn_after (rtx insn, rtx after)
|
|||
|
||||
case JUMP_INSN:
|
||||
new_rtx = emit_jump_insn_after (copy_insn (PATTERN (insn)), after);
|
||||
CROSSING_JUMP_P (new_rtx) = CROSSING_JUMP_P (insn);
|
||||
break;
|
||||
|
||||
case DEBUG_INSN:
|
||||
|
|
Loading…
Reference in New Issue