diff options
Diffstat (limited to 'opcodes/ppc-opc.c')
-rw-r--r-- | opcodes/ppc-opc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |