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
This commit is contained in:
parent
27c38fbec7
commit
3bab257194
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-09-12 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* integrate.c (copy_insn_list): Copy label name from
|
||||
NOTE_INSN_DELETED_LABEL.
|
||||
|
||||
2001-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* c-common.c (c_tree_code_name): Const-ification.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue