summaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorjfc <jfc@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-24 14:49:51 +0000
committerjfc <jfc@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-24 14:49:51 +0000
commite02c6d1f262e7f2f5ff1b42026bcd2e98ed720be (patch)
tree67d082a77978c7a63cfc5e94cfd3024b41140b03 /gcc/combine.c
parent825253e8123848f54cb437fd6cb7b752e614364c (diff)
downloadgcc-e02c6d1f262e7f2f5ff1b42026bcd2e98ed720be.tar.gz
* optabs.c: Use gen_rtx_FOO (...) instead of gen_rtx (FOO, ...).
* expr.c: Likewise. * explow.c: Likewise. * combine.c: Likewise. * reload1.c: Likewise. * gcse.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20701 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index a453b574d21..f5252292494 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -11552,8 +11552,9 @@ distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
if (! find_regno_note (tem, REG_UNUSED,
REGNO (XEXP (note, 0))))
REG_NOTES (tem)
- = gen_rtx (EXPR_LIST, REG_UNUSED, XEXP (note, 0),
- REG_NOTES (tem));
+ = gen_rtx_EXPR_LIST (REG_UNUSED,
+ XEXP (note, 0),
+ REG_NOTES (tem));
}
else
{