* Use .space instead of .fill

git-svn-id: trunk@775 -
This commit is contained in:
daniel 2005-07-31 21:25:40 +00:00
parent 8eafc28238
commit 94447481c1

View File

@ -515,12 +515,12 @@ var
begin
if Tai_datablock(hp).is_global then
begin
asmwrite(#9'.global ');
asmwrite(#9'.globl ');
asmwriteln(Tai_datablock(hp).sym.name);
end;
asmwrite(Tai_datablock(hp).sym.name);
asmwriteln(':');
asmwriteln(#9'.skip '+tostr(Tai_datablock(hp).size));
asmwriteln(#9'.space '+tostr(Tai_datablock(hp).size));
{$ifdef disabled}
if (target_info.system <> system_powerpc_darwin) or
not tai_datablock(hp).is_global then