* don't use arm assembler md5 implementation of thumb code is generated

This commit is contained in:
florian 2025-04-06 18:59:44 +02:00
parent 7719a5a5a7
commit 32a9dab401

View File

@ -353,7 +353,7 @@ end;
{$i md5x64_sysv.inc}
{$define MD5ASM}
{$endif MSWINDOWS}
{$elseif defined(CPUARM)}
{$elseif defined(CPUARM) and not (defined(CPUTHUMB)) and not (defined(CPUTHUMB2))}
{$i md5arm.inc}
{$define MD5ASM}
{$endif}
@ -826,5 +826,5 @@ function StrtoMD5(const MD5String:String):TMDDigest;
end;
if not f then
FillChar(Result, Sizeof(Result), 0);
end;
end;
end.