mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 18:25:58 +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
|
||||
a := a or -(1 shl (size - 7));
|
||||
if (((a = 0) and
|
||||
(a and $40 = 0)) or
|
||||
(b and $40 = 0)) or
|
||||
((a = -1) and
|
||||
(a and $40 <> 0))) then
|
||||
(b and $40 <> 0))) then
|
||||
more := false
|
||||
else
|
||||
b := b or $80;
|
||||
|
Loading…
Reference in New Issue
Block a user