mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 04:09:15 +02:00
* remove asw
This commit is contained in:
parent
6093a37d1b
commit
b1863f8fad
@ -232,8 +232,9 @@ interface
|
|||||||
labelprefix : '.L';
|
labelprefix : '.L';
|
||||||
comment : '# ';
|
comment : '# ';
|
||||||
secnames : ('',
|
secnames : ('',
|
||||||
'.text','.data','.bss',
|
'.text','.data','.section .bss',
|
||||||
'','','','','','',
|
'.section .idata$2','.section .idata$4','.section .idata$5',
|
||||||
|
'.section .idata$6','.section .idata$7','.section .edata',
|
||||||
'.stab','.stabstr','COMMON')
|
'.stab','.stabstr','COMMON')
|
||||||
);
|
);
|
||||||
{$else x86_64}
|
{$else x86_64}
|
||||||
@ -251,8 +252,9 @@ interface
|
|||||||
labelprefix : '.L';
|
labelprefix : '.L';
|
||||||
comment : '# ';
|
comment : '# ';
|
||||||
secnames : ('',
|
secnames : ('',
|
||||||
'.text','.data','.bss',
|
'.text','.data','.section .bss',
|
||||||
'','','','','','',
|
'.section .idata$2','.section .idata$4','.section .idata$5',
|
||||||
|
'.section .idata$6','.section .idata$7','.section .edata',
|
||||||
'.stab','.stabstr','COMMON')
|
'.stab','.stabstr','COMMON')
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -275,26 +277,6 @@ interface
|
|||||||
'','','','','','',
|
'','','','','','',
|
||||||
'.stab','.stabstr','COMMON')
|
'.stab','.stabstr','COMMON')
|
||||||
);
|
);
|
||||||
|
|
||||||
as_i386_asw_info : tasminfo =
|
|
||||||
(
|
|
||||||
id : as_i386_asw;
|
|
||||||
idtxt : 'ASW';
|
|
||||||
asmbin : 'asw';
|
|
||||||
asmcmd : '-o $OBJ $ASM';
|
|
||||||
supported_target : system_i386_win32;
|
|
||||||
outputbinary: false;
|
|
||||||
allowdirect : true;
|
|
||||||
needar : true;
|
|
||||||
labelprefix_only_inside_procedure : false;
|
|
||||||
labelprefix : '.L';
|
|
||||||
comment : '# ';
|
|
||||||
secnames : ('',
|
|
||||||
'.text','.data','.section .bss',
|
|
||||||
'.section .idata$2','.section .idata$4','.section .idata$5',
|
|
||||||
'.section .idata$6','.section .idata$7','.section .edata',
|
|
||||||
'.stab','.stabstr','COMMON')
|
|
||||||
);
|
|
||||||
{$endif x86_64}
|
{$endif x86_64}
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
@ -303,12 +285,14 @@ initialization
|
|||||||
{$else x86_64}
|
{$else x86_64}
|
||||||
RegisterAssembler(as_i386_as_info,Tx86ATTAssembler);
|
RegisterAssembler(as_i386_as_info,Tx86ATTAssembler);
|
||||||
RegisterAssembler(as_i386_as_aout_info,Tx86ATTAssembler);
|
RegisterAssembler(as_i386_as_aout_info,Tx86ATTAssembler);
|
||||||
RegisterAssembler(as_i386_asw_info,Tx86ATTAssembler);
|
|
||||||
{$endif x86_64}
|
{$endif x86_64}
|
||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.7 2003-10-01 20:34:50 peter
|
Revision 1.8 2003-10-02 21:18:06 peter
|
||||||
|
* remove asw
|
||||||
|
|
||||||
|
Revision 1.7 2003/10/01 20:34:50 peter
|
||||||
* procinfo unit contains tprocinfo
|
* procinfo unit contains tprocinfo
|
||||||
* cginfo renamed to cgbase
|
* cginfo renamed to cgbase
|
||||||
* moved cgmessage to verbose
|
* moved cgmessage to verbose
|
||||||
|
Loading…
Reference in New Issue
Block a user