mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 00:59:12 +02:00
* fixed WriteDecodedSleb128
git-svn-id: trunk@2413 -
This commit is contained in:
parent
1139570b64
commit
976bb457b4
@ -313,9 +313,9 @@ implementation
|
|||||||
if (neg) then
|
if (neg) then
|
||||||
a := a or -(1 shl (size - 7));
|
a := a or -(1 shl (size - 7));
|
||||||
if (((a = 0) and
|
if (((a = 0) and
|
||||||
(a and $40 = 0)) or
|
(b and $40 = 0)) or
|
||||||
((a = -1) and
|
((a = -1) and
|
||||||
(a and $40 <> 0))) then
|
(b and $40 <> 0))) then
|
||||||
more := false
|
more := false
|
||||||
else
|
else
|
||||||
b := b or $80;
|
b := b or $80;
|
||||||
|
Loading…
Reference in New Issue
Block a user