소스 검색

* allow 32 byte alignment of constants and variables on aarch64-darwin

florian 3 년 전
부모
커밋
eba76dd052
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      compiler/systems/i_darwin.pas

+ 2 - 2
compiler/systems/i_darwin.pas

@@ -652,9 +652,9 @@ const
             coalescealign   : 0;
             coalescealignskipmax: 0;
             constalignmin   : 0;
-            constalignmax   : 16;
+            constalignmax   : 32;
             varalignmin     : 0;
-            varalignmax     : 16;
+            varalignmax     : 32;
             localalignmin   : 4;
             localalignmax   : 16;
             recordalignmin  : 0;