|
@@ -609,9 +609,8 @@ implementation
|
|
|
asmwrite(#9'.lcomm'#9);
|
|
|
asmwrite(tai_datablock(hp).sym.name);
|
|
|
asmwrite(','+tostr(tai_datablock(hp).size));
|
|
|
- if not(target_info.system in [system_arm_linux,system_i386_win32,system_arm_wince]) then
|
|
|
- asmwrite(','+tostr(last_align));
|
|
|
- asmwriteln('');
|
|
|
+ asmwrite(','+tostr(last_align));
|
|
|
+ asmln;
|
|
|
end
|
|
|
end
|
|
|
else
|
|
@@ -625,18 +624,14 @@ implementation
|
|
|
asmwrite(#9'.comm'#9);
|
|
|
asmwrite(tai_datablock(hp).sym.name);
|
|
|
asmwrite(','+tostr(tai_datablock(hp).size));
|
|
|
- if not(target_info.system in [system_arm_linux,system_i386_win32,system_arm_wince]) then
|
|
|
- asmwrite(','+tostr(last_align));
|
|
|
- asmwriteln('');
|
|
|
+ asmln;
|
|
|
end
|
|
|
else
|
|
|
begin
|
|
|
asmwrite(#9'.lcomm'#9);
|
|
|
asmwrite(tai_datablock(hp).sym.name);
|
|
|
asmwrite(','+tostr(tai_datablock(hp).size));
|
|
|
- if not(target_info.system in [system_arm_linux,system_i386_win32,system_arm_wince]) then
|
|
|
- asmwrite(','+tostr(last_align));
|
|
|
- asmwriteln('');
|
|
|
+ asmln;
|
|
|
end;
|
|
|
end;
|
|
|
end;
|