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/expr.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/expr.c')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2289,7 +2289,7 @@ emit_move_insn_1 (x, y) { /* Show the output dies here. */ if (x != y) - emit_insn (gen_rtx (CLOBBER, VOIDmode, x)); + emit_insn (gen_rtx_CLOBBER (VOIDmode, x)); emit_insn (GEN_FCN (mov_optab->handlers[(int) submode].insn_code) (gen_realpart (submode, x), gen_realpart (submode, y))); @@ -2639,7 +2639,7 @@ emit_push_insn (x, mode, type, size, align, partial, reg, extra, { rtx opalign = GEN_INT (align); enum machine_mode mode; - rtx target = gen_rtx (MEM, BLKmode, temp); + rtx target = gen_rtx_MEM (BLKmode, temp); for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode; |