summaryrefslogtreecommitdiffstats
path: root/gcc/config/m32r
diff options
context:
space:
mode:
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2002-03-22 19:29:21 +0000
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2002-03-22 19:29:21 +0000
commite2c2ccf603ce3104437d17eca4937fea79541bc0 (patch)
tree6418926f2b9bc548c9845a34ceb6aeac8eca4502 /gcc/config/m32r
parent3a7c3680df1c3fa4351f01d54c811f4c075defe3 (diff)
downloadppe42-gcc-e2c2ccf603ce3104437d17eca4937fea79541bc0.tar.gz
ppe42-gcc-e2c2ccf603ce3104437d17eca4937fea79541bc0.zip
* config/v850/v850.c (v850_reorg): Only call alter_subreg on
REG or MEM subregs, pass rtx * instead of rtx to it. * config/i860/i860.c (output_delayed_branch, output_delay_insn): Pass rtx * instead of rtx to alter_subreg. * config/m32r/m32r.c (gen_split_move_double): Likewise. * config/pj/pj.c (pj_output_rval): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51182 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m32r')
-rw-r--r--gcc/config/m32r/m32r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m32r/m32r.c b/gcc/config/m32r/m32r.c
index acc6b5edb2a..32dff3ab23c 100644
--- a/gcc/config/m32r/m32r.c
+++ b/gcc/config/m32r/m32r.c
@@ -1281,9 +1281,9 @@ gen_split_move_double (operands)
subregs to make this code simpler. It is safe to call
alter_subreg any time after reload. */
if (GET_CODE (dest) == SUBREG)
- dest = alter_subreg (dest);
+ alter_subreg (&dest);
if (GET_CODE (src) == SUBREG)
- src = alter_subreg (src);
+ alter_subreg (&src);
start_sequence ();
if (GET_CODE (dest) == REG)
OpenPOWER on IntegriCloud