mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:07:55 +02:00

'test [reg+const*recordtype.recordfield], 1' produce an 'unable to determine operand size' error git-svn-id: trunk@38229 -
36 lines
516 B
ObjectPascal
36 lines
516 B
ObjectPascal
{ %FAIL }
|
|
{ %CPU=i8086,i386,x86_64 }
|
|
program tasm18c;
|
|
|
|
{$ifdef FPC}
|
|
{$asmmode intel}
|
|
{$else}
|
|
{$define CPUI8086}
|
|
{$endif FPC}
|
|
|
|
const
|
|
cval = 1;
|
|
|
|
type
|
|
foo2 = packed record
|
|
b1: byte;
|
|
b2: byte;
|
|
end;
|
|
|
|
begin
|
|
asm
|
|
{ this produces an error in TP7, while
|
|
test [di + foo2*1], cval
|
|
doesn't... go figure :) }
|
|
{$ifdef CPUI8086}
|
|
test [di + 1*foo2], cval
|
|
{$endif}
|
|
{$ifdef CPUI386}
|
|
test [edi + 1*foo2], cval
|
|
{$endif}
|
|
{$ifdef CPUX86_64}
|
|
test [rdi + 1*foo2], cval
|
|
{$endif}
|
|
end;
|
|
end.
|