mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 12:19:30 +02:00
+ better test for IMUL and SHRD !
This commit is contained in:
parent
e39755387b
commit
97b2b7f0b7
@ -3,5 +3,13 @@ begin
|
||||
{$asmmode intel}
|
||||
asm
|
||||
SHRD [ESI-8], EAX, CL
|
||||
SHLD EBX,ECX,5
|
||||
IMUL ECX,dword [EBP-8],5
|
||||
end;
|
||||
{$asmmode att}
|
||||
asm
|
||||
shrdl %cl,%eax,-8(%esi)
|
||||
shldl $5,%ecx,%ebx
|
||||
imull $5,-8(%ebp),%ecx
|
||||
end;
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user