mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-14 01:09:12 +02:00
* don't generate align in .bss
This commit is contained in:
parent
60407e302b
commit
c48956fd16
@ -490,7 +490,12 @@ interface
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
ait_align :
|
ait_align :
|
||||||
|
begin
|
||||||
|
{ nasm gives warnings when it finds align in bss as it
|
||||||
|
wants to store data }
|
||||||
|
if lastsec<>sec_bss then
|
||||||
AsmWriteLn(#9'ALIGN '+tostr(tai_align(hp).aligntype));
|
AsmWriteLn(#9'ALIGN '+tostr(tai_align(hp).aligntype));
|
||||||
|
end;
|
||||||
|
|
||||||
ait_datablock :
|
ait_datablock :
|
||||||
begin
|
begin
|
||||||
@ -921,7 +926,10 @@ initialization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.33 2003-04-22 10:09:35 daniel
|
Revision 1.34 2003-05-26 19:37:57 peter
|
||||||
|
* don't generate align in .bss
|
||||||
|
|
||||||
|
Revision 1.33 2003/04/22 10:09:35 daniel
|
||||||
+ Implemented the actual register allocator
|
+ Implemented the actual register allocator
|
||||||
+ Scratch registers unavailable when new register allocator used
|
+ Scratch registers unavailable when new register allocator used
|
||||||
+ maybe_save/maybe_restore unavailable when new register allocator used
|
+ maybe_save/maybe_restore unavailable when new register allocator used
|
||||||
|
Loading…
Reference in New Issue
Block a user