From: Kaz Kojima Date: Fri, 25 Feb 2005 07:13:25 +0000 (+0000) Subject: re PR rtl-optimization/20117 (duplicated labels in PIC) X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd182be84e9c8ae8485ac7c392fa0b6678969e3c;p=platform%2Fupstream%2Fgcc.git re PR rtl-optimization/20117 (duplicated labels in PIC) PR rtl-optimization/20117 * bb-reorder.c (duplicate_computed_gotos): Don't duplicate the block including noncopyable insn. From-SVN: r95533 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 436f078..a41808c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-02-25 Kaz Kojima + + PR rtl-optimization/20117 + * bb-reorder.c (duplicate_computed_gotos): Don't duplicate + the block including noncopyable insn. + 2005-02-24 Kazu Hirata * cse.c (delete_trivially_dead_insns): Speed up by minimizing diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 23cdf09..44a5011 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -2050,7 +2050,17 @@ duplicate_computed_gotos (void) FOR_BB_INSNS (bb, insn) { if (INSN_P (insn)) - size += get_attr_length (insn); + { + /* If the insn isn't copyable, don't duplicate + the block. */ + if (targetm.cannot_copy_insn_p + && targetm.cannot_copy_insn_p (insn)) + { + size = max_size + 1; + break; + } + size += get_attr_length (insn); + } if (size > max_size) break; }