mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
21 lines
385 B
ObjectPascal
21 lines
385 B
ObjectPascal
{ %CPU=i386 }
|
|
{ Old file: tbs0034.pp }
|
|
{ shows wrong line numbering when asmbler is parsed in direct mode. }
|
|
|
|
{ line numbering problem }
|
|
{ I don't really know how to test this (PM }
|
|
var i : longint;
|
|
|
|
begin
|
|
asm
|
|
movl %eax,%eax
|
|
movl %eax,%eax
|
|
movl %eax,%eax
|
|
movl %eax,%eax
|
|
movl %eax,%eax
|
|
movl %eax,%eax
|
|
movl %eax,%eax
|
|
end ;
|
|
i:=0;
|
|
end.
|