aboutsummaryrefslogtreecommitdiff
path: root/gcc/explow.c
diff options
context:
space:
mode:
authorJohn Carr <jfc@mit.edu>1998-06-24 14:49:51 +0000
committerJohn Carr <jfc@gcc.gnu.org>1998-06-24 14:49:51 +0000
commit9e6a570365b8fc04b0f0b8fbf8eb28d99f4a0710 (patch)
tree67d082a77978c7a63cfc5e94cfd3024b41140b03 /gcc/explow.c
parent55a6ba9ff30131802ac5896dfc3807cce3e97e09 (diff)
downloadgcc-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/explow.c')
-rw-r--r--gcc/explow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index 8117836..7c74d6a 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -1258,9 +1258,9 @@ allocate_dynamic_stack_space (size, target, known_align)
{
rtx note_target = get_last_insn ();
- REG_NOTES (note_target) = gen_rtx (EXPR_LIST, REG_SAVE_AREA,
- setjmpless_size,
- REG_NOTES (note_target));
+ REG_NOTES (note_target)
+ = gen_rtx_EXPR_LIST (REG_SAVE_AREA, setjmpless_size,
+ REG_NOTES (note_target));
}
#endif /* SETJMP_VIA_SAVE_AREA */
#ifdef STACK_GROWS_DOWNWARD