diff options
author | Fredrik Gustafsson <[email protected]> | 2013-10-11 09:41:36 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-10-11 09:41:36 +0200 |
commit | 5a6baf6a221f5d862c78b521bd86800ebd41f450 (patch) | |
tree | e76809c888a6639c84be89b061dfa8eba9fc9d95 /erts/emulator/beam | |
parent | 8461744914de14bedac3cfe699efc737b7fa7203 (diff) | |
parent | 8a5f2c73d9664c5a170827cea10214019490e923 (diff) | |
download | otp-5a6baf6a221f5d862c78b521bd86800ebd41f450.tar.gz otp-5a6baf6a221f5d862c78b521bd86800ebd41f450.tar.bz2 otp-5a6baf6a221f5d862c78b521bd86800ebd41f450.zip |
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/beam')
-rw-r--r-- | erts/emulator/beam/big.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/erts/emulator/beam/big.c b/erts/emulator/beam/big.c index 6b43c53985..2b27b111d8 100644 --- a/erts/emulator/beam/big.c +++ b/erts/emulator/beam/big.c @@ -1325,9 +1325,9 @@ static dsize_t I_lshift(ErtsDigit* x, dsize_t xl, Sint y, return 1; } else { - SWord ay = (y < 0) ? -y : y; - int bw = ay / D_EXP; - int sw = ay % D_EXP; + Uint ay = (y < 0) ? -y : y; + Uint bw = ay / D_EXP; + Uint sw = ay % D_EXP; dsize_t rl; ErtsDigit a1=0; ErtsDigit a0=0; @@ -1368,7 +1368,7 @@ static dsize_t I_lshift(ErtsDigit* x, dsize_t xl, Sint y, } if (sign) { - int zl = bw; + Uint zl = bw; ErtsDigit* z = x; while(zl--) { |