mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 23:09:40 +02:00
* compilation on non x86 fixed
git-svn-id: trunk@22330 -
This commit is contained in:
parent
03bf93488b
commit
57ee96ef86
@ -2434,7 +2434,7 @@ function BsfQWord(Const AValue : QWord): cardinal;
|
||||
result:=$ff;
|
||||
if lo(AValue) <> 0 then
|
||||
result:=BsfDWord(lo(AValue))
|
||||
else hi(AValue) <> 0 then
|
||||
else if hi(AValue) <> 0 then
|
||||
result:=BsfDWord(hi(AValue)) + 32;
|
||||
end;
|
||||
{$endif}
|
||||
|
Loading…
Reference in New Issue
Block a user