diff options
author | John Carr <jfc@mit.edu> | 1998-06-24 14:49:51 +0000 |
---|---|---|
committer | John Carr <jfc@gcc.gnu.org> | 1998-06-24 14:49:51 +0000 |
commit | 9e6a570365b8fc04b0f0b8fbf8eb28d99f4a0710 (patch) | |
tree | 67d082a77978c7a63cfc5e94cfd3024b41140b03 /gcc/combine.c | |
parent | 55a6ba9ff30131802ac5896dfc3807cce3e97e09 (diff) | |
download | gcc-9e6a570365b8fc04b0f0b8fbf8eb28d99f4a0710.zip gcc-9e6a570365b8fc04b0f0b8fbf8eb28d99f4a0710.tar.gz gcc-9e6a570365b8fc04b0f0b8fbf8eb28d99f4a0710.tar.bz2 |
optabs.c: Use gen_rtx_FOO (...) instead of gen_rtx (FOO, ...).
* 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.
From-SVN: r20701
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index a453b57..f525229 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 { |