diff options
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/ppc-opc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index fc06372..82e184c 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2001-03-30 Alexandre Oliva <aoliva@redhat.com> + + * ppc-opc.c (insert_mbe): Shift mask initializer as long. + 2001-03-24 Alan Modra <alan@linuxcare.com.au> * i386-dis.c (PREGRP25): Define. diff --git a/opcodes/ppc-opc.c b/opcodes/ppc-opc.c index c8772d8..1ba8296 100644 --- a/opcodes/ppc-opc.c +++ b/opcodes/ppc-opc.c @@ -756,7 +756,7 @@ insert_mbe (insn, value, errmsg) /* me: location of last 1->0 transition */ /* count: # transitions */ - for (mx = 0, mask = 1 << 31; mx < 32; ++mx, mask >>= 1) + for (mx = 0, mask = (long) 1 << 31; mx < 32; ++mx, mask >>= 1) { if ((uval & mask) && !last) { |