Browse Source

* ppc-opc.c (insert_mbe, extract_mbe): Shift 1L instead of 1 up.

ezannoni_pie-20030916-branch
Jakub Jelinek 23 years ago
parent
commit
0deb7ac528
  1. 4
      opcodes/ChangeLog
  2. 6
      opcodes/ppc-opc.c

4
opcodes/ChangeLog

@ -1,3 +1,7 @@
2003-07-29 Jakub Jelinek <jakub@redhat.com>
* ppc-opc.c (insert_mbe, extract_mbe): Shift 1L instead of 1 up.
2003-07-24 Nick Clifton <nickc@redhat.com>
* po/fr.po: Updated French translation.

6
opcodes/ppc-opc.c

@ -1103,7 +1103,7 @@ insert_mbe (unsigned long insn,
/* me: location of last 1->0 transition */
/* count: # transitions */
for (mx = 0, mask = 1 << 31; mx < 32; ++mx, mask >>= 1)
for (mx = 0, mask = 1L << 31; mx < 32; ++mx, mask >>= 1)
{
if ((uval & mask) && !last)
{
@ -1144,7 +1144,7 @@ extract_mbe (unsigned long insn,
{
ret = 0;
for (i = mb; i <= me; i++)
ret |= 1 << (31 - i);
ret |= 1L << (31 - i);
}
else if (mb == me + 1)
ret = ~0;
@ -1152,7 +1152,7 @@ extract_mbe (unsigned long insn,
{
ret = ~0;
for (i = me + 1; i < mb; i++)
ret &= ~(1 << (31 - i));
ret &= ~(1L << (31 - i));
}
return ret;
}

Loading…
Cancel
Save