From b86015eaa50eb4b44a7055a5114262e94040213a Mon Sep 17 00:00:00 2001 From: Yoshinori Sato Date: Wed, 19 Jul 2006 06:27:04 +0000 Subject: [PATCH] compile.c (OBITOP): Bit address mask low three bit. compile.c (decode): Fix warning. --- sim/h8300/ChangeLog | 5 +++++ sim/h8300/compile.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index 3e54a28e689..e2217706639 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 3c11e8263d2..0d307577ae3 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)) \ -- 2.39.2