aboutsummaryrefslogtreecommitdiff
path: root/gcc/jump.c
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2001-08-28 22:20:40 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2001-08-28 22:20:40 +0000
commit5dde01439ea4977e8678c6cfc096c5a7d13fe821 (patch)
treef783b1774a10f99141b35d4a606d6bfa0d19533f /gcc/jump.c
parent1a27eec11a72963685bb3966ad8517c4433cd84d (diff)
downloadgcc-5dde01439ea4977e8678c6cfc096c5a7d13fe821.zip
gcc-5dde01439ea4977e8678c6cfc096c5a7d13fe821.tar.gz
gcc-5dde01439ea4977e8678c6cfc096c5a7d13fe821.tar.bz2
jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not INSN_LIST.
* jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not INSN_LIST. From-SVN: r45242
Diffstat (limited to 'gcc/jump.c')
-rw-r--r--gcc/jump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index e8a8594..692c0b5 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -1474,7 +1474,7 @@ mark_jump_label (x, insn, in_mem)
that are the targets of jumps, must have a
REG_LABEL note. */
if (! find_reg_note (insn, REG_LABEL, label))
- REG_NOTES (insn) = gen_rtx_INSN_LIST (REG_LABEL, label,
+ REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_LABEL, label,
REG_NOTES (insn));
}
}