浏览代码

* fixed arm-linux

git-svn-id: trunk@6654 -
florian 18 年之前
父节点
当前提交
e3204bb902
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      compiler/aggas.pas

+ 4 - 2
compiler/aggas.pas

@@ -609,7 +609,8 @@ implementation
                        asmwrite(#9'.lcomm'#9);
                        asmwrite(tai_datablock(hp).sym.name);
                        asmwrite(','+tostr(tai_datablock(hp).size));
-                       asmwrite(','+tostr(last_align));
+                       if not(target_info.system in [system_arm_linux]) then
+                         asmwrite(','+tostr(last_align));
                        asmwriteln('');
                      end
                  end
@@ -632,7 +633,8 @@ implementation
                        asmwrite(#9'.lcomm'#9);
                        asmwrite(tai_datablock(hp).sym.name);
                        asmwrite(','+tostr(tai_datablock(hp).size));
-                       asmwrite(','+tostr(last_align));
+                       if not(target_info.system in [system_arm_linux]) then
+                         asmwrite(','+tostr(last_align));
                        asmwriteln('');
                      end;
                  end;