From: Yoshinori Sato Date: Wed, 19 Jul 2006 06:27:04 +0000 (+0000) Subject: compile.c (OBITOP): Bit address mask low three bit. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a99360b6dc71bb74cfe94ad3dda875d5e6f7e58a;p=pf3gnuchains%2Fpf3gnuchains3x.git compile.c (OBITOP): Bit address mask low three bit. compile.c (decode): Fix warning. --- diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index 3e54a28e68..e221770663 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,8 @@ +2006-07-13 Yoshinori Sato + + * compile.c (OBITOP): Bit address mask low three bit. + * compile.c (decode): Fix warning. + 2006-06-13 Richard Earnshaw * configure: Regenerated. diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c index 3c11e8263d..0d307577ae 100644 --- a/sim/h8300/compile.c +++ b/sim/h8300/compile.c @@ -1018,7 +1018,7 @@ decode (SIM_DESC sd, int addr, unsigned char *data, decoded_inst *dst) p->literal = 0; if (OP_KIND (q->how) == O_JSR || OP_KIND (q->how) == O_JMP) - if (lvalue (sd, p->type, p->reg, &p->type)) + if (lvalue (sd, p->type, p->reg, (unsigned int *)&p->type)) goto end; } else if ((x & MODE) == ABS) @@ -1050,7 +1050,7 @@ decode (SIM_DESC sd, int addr, unsigned char *data, decoded_inst *dst) p->literal = cst[opnum]; if (OP_KIND (q->how) == O_JSR || OP_KIND (q->how) == O_JMP) - if (lvalue (sd, p->type, p->reg, &p->type)) + if (lvalue (sd, p->type, p->reg, (unsigned int *)&p->type)) goto end; } else if ((x & MODE) == PCREL) @@ -1891,7 +1891,7 @@ case O (name, SB): \ goto end; \ if (fetch (sd, &code->src, &tmp)) \ goto end; \ - m = 1 << tmp; \ + m = 1 << (tmp & 7); \ op; \ if (s) \ if (store (sd, &code->dst,ea)) \