aboutsummaryrefslogtreecommitdiff
path: root/gcc/integrate.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-09-12 10:59:49 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-09-12 10:59:49 -0700
commit3bab25719403e88f662eb490f6033d65d7e7af55 (patch)
tree39a70a3727de397338dea62f125d20938599547b /gcc/integrate.c
parent27c38fbec7e6372600791cdb5d2dc7b0538f06d2 (diff)
downloadgcc-3bab25719403e88f662eb490f6033d65d7e7af55.zip
gcc-3bab25719403e88f662eb490f6033d65d7e7af55.tar.gz
gcc-3bab25719403e88f662eb490f6033d65d7e7af55.tar.bz2
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
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r--gcc/integrate.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c
index cdf368e..0934d76 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;
}