From: Richard Henderson Date: Wed, 12 Sep 2001 17:59:49 +0000 (-0700) Subject: integrate.c (copy_insn_list): Copy label name from NOTE_INSN_DELETED_LABEL. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3bab25719403e88f662eb490f6033d65d7e7af55;p=gcc.git integrate.c (copy_insn_list): Copy label name from NOTE_INSN_DELETED_LABEL. * integrate.c (copy_insn_list): Copy label name from NOTE_INSN_DELETED_LABEL. From-SVN: r45568 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index edd2ad7375f..a459cefea22 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-09-12 Richard Henderson + + * integrate.c (copy_insn_list): Copy label name from + NOTE_INSN_DELETED_LABEL. + 2001-09-12 Kaveh R. Ghazi * c-common.c (c_tree_code_name): Const-ification. diff --git a/gcc/integrate.c b/gcc/integrate.c index cdf368e8215..0934d769aa8 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -1559,6 +1559,7 @@ copy_insn_list (insns, map, static_chain_value) { copy = emit_label (get_label_from_map (map, CODE_LABEL_NUMBER (insn))); + LABEL_NAME (copy) = NOTE_SOURCE_FILE (insn); map->const_age++; break; }