diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-05 14:21:54 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-05 14:21:54 +0000 |
commit | 92fd5e4152193b671d15bdbcc17d12d354f6b4dd (patch) | |
tree | 79b1b714c1dae3bb10c1a9c2009afab3747bf130 | |
parent | f822fcf76dd9b872af4018611317e38b5047898f (diff) | |
download | gcc-92fd5e4152193b671d15bdbcc17d12d354f6b4dd.zip gcc-92fd5e4152193b671d15bdbcc17d12d354f6b4dd.tar.gz gcc-92fd5e4152193b671d15bdbcc17d12d354f6b4dd.tar.bz2 |
pa.c (emit_hpdiv_const): Replace gen_rtx with gen_rtx_PARALLEL.
* config/pa/pa.c (emit_hpdiv_const): Replace gen_rtx with
gen_rtx_PARALLEL.
From-SVN: r77313
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/pa/pa.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0d0ac27..8ffed5f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2004-02-05 Kazu Hirata <kazu@cs.umass.edu> + * config/pa/pa.c (emit_hpdiv_const): Replace gen_rtx with + gen_rtx_PARALLEL. + +2004-02-05 Kazu Hirata <kazu@cs.umass.edu> + * emit-rtl.c: Update the comment about the file. 2004-02-05 Joseph S. Myers <jsm@polyomino.org.uk> diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 0cce6a9..0f9a2db 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -5554,8 +5554,8 @@ emit_hpdiv_const (rtx *operands, int unsignedp) emit_move_insn (gen_rtx_REG (SImode, 26), operands[1]); emit - (gen_rtx - (PARALLEL, VOIDmode, + (gen_rtx_PARALLEL + (VOIDmode, gen_rtvec (6, gen_rtx_SET (VOIDmode, gen_rtx_REG (SImode, 29), gen_rtx_fmt_ee (unsignedp ? UDIV : DIV, SImode, |