mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 11:09:42 +02:00
* small fixes
This commit is contained in:
parent
b3959f29ed
commit
529f924a9b
@ -1,3 +1,4 @@
|
||||
{$mode delphi}
|
||||
type
|
||||
TListEntry = record
|
||||
Next: ^TListEntry; (*<-- Error message here*)
|
||||
|
@ -1,15 +1,18 @@
|
||||
{ bug for shrd assemblerreader }
|
||||
begin
|
||||
if false then
|
||||
begin
|
||||
{$asmmode intel}
|
||||
asm
|
||||
asm
|
||||
SHRD [ESI-8], EAX, CL
|
||||
SHLD EBX,ECX,5
|
||||
IMUL ECX,dword [EBP-8],5
|
||||
end;
|
||||
end;
|
||||
{$asmmode att}
|
||||
asm
|
||||
asm
|
||||
shrdl %cl,%eax,-8(%esi)
|
||||
shldl $5,%ecx,%ebx
|
||||
imull $5,-8(%ebp),%ecx
|
||||
end;
|
||||
end;
|
||||
end.
|
||||
|
@ -1,5 +1,5 @@
|
||||
{$ifdef fpc}{$mode delphi}{$endif}
|
||||
unit p;
|
||||
unit tbs0327;
|
||||
interface
|
||||
|
||||
type
|
||||
|
Loading…
Reference in New Issue
Block a user