mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 17:49:07 +02:00
* wrong prefix output for masm fixed
This commit is contained in:
parent
6d0f5a79de
commit
c08ec5fbf3
@ -652,9 +652,10 @@ implementation
|
|||||||
{ nasm prefers prefix on a line alone
|
{ nasm prefers prefix on a line alone
|
||||||
AsmWriteln(#9#9+prefix); but not masm PM
|
AsmWriteln(#9#9+prefix); but not masm PM
|
||||||
prefix:=''; }
|
prefix:=''; }
|
||||||
if (aktoutputformat = as_i386_masm) then
|
if aktoutputformat in [as_i386_nasmcoff,as_i386_nasmwin32,as_i386_nasmwdosx,
|
||||||
|
as_i386_nasmelf,as_i386_nasmobj,as_i386_nasmbeos] then
|
||||||
begin
|
begin
|
||||||
AsmWriteln(s);
|
AsmWriteln(prefix);
|
||||||
prefix:='';
|
prefix:='';
|
||||||
end;
|
end;
|
||||||
end
|
end
|
||||||
@ -875,7 +876,10 @@ initialization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.54 2004-12-12 10:50:34 florian
|
Revision 1.55 2005-01-24 20:44:29 florian
|
||||||
|
* wrong prefix output for masm fixed
|
||||||
|
|
||||||
|
Revision 1.54 2004/12/12 10:50:34 florian
|
||||||
* fixed operand size calculation for sse operands
|
* fixed operand size calculation for sse operands
|
||||||
+ all nasm assembler targets to help page output added
|
+ all nasm assembler targets to help page output added
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user