diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-28 22:20:40 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-28 22:20:40 +0000 |
commit | b0382a8ecda8fa7089670a8d1cf0cf02cc5d2055 (patch) | |
tree | f783b1774a10f99141b35d4a606d6bfa0d19533f /gcc/jump.c | |
parent | e3614b2eda22e2d85c20d476b21318edc2ba411f (diff) | |
download | gcc-b0382a8ecda8fa7089670a8d1cf0cf02cc5d2055.tar.gz |
* jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not
INSN_LIST.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45242 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/jump.c')
-rw-r--r-- | gcc/jump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/jump.c b/gcc/jump.c index e8a859423ed..692c0b5a965 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)); } } |