mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-11 08:30:33 +02:00
* stack segment moved outside of dgroup in the i8086 far data memory models, so
it no longer eats from the precious 64kb limit for static data git-svn-id: trunk@27959 -
This commit is contained in:
parent
49f93b4464
commit
22a7dfa231
@ -1220,8 +1220,10 @@ interface
|
||||
{ group these sections in the same segment }
|
||||
if current_settings.x86memorymodel=mm_tiny then
|
||||
AsmWriteLn('GROUP dgroup text rodata data fpc bss')
|
||||
else if current_settings.x86memorymodel in x86_near_data_models then
|
||||
AsmWriteLn('GROUP dgroup rodata data fpc bss stack')
|
||||
else
|
||||
AsmWriteLn('GROUP dgroup rodata data fpc bss stack');
|
||||
AsmWriteLn('GROUP dgroup rodata data fpc bss');
|
||||
if paratargetdbg in [dbg_dwarf2,dbg_dwarf3,dbg_dwarf4] then
|
||||
begin
|
||||
AsmWriteLn('SECTION .debug_frame use32 class=DWARF');
|
||||
|
Loading…
Reference in New Issue
Block a user