Commit 3bab2571 by Richard Henderson Committed by Richard Henderson

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
parent 27c38fbe
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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment