Explorar el Código

* use up to 16 bytes alignment for the WASI target

git-svn-id: trunk@49178 -
nickysn hace 4 años
padre
commit
c7f3469a3f
Se han modificado 1 ficheros con 6 adiciones y 6 borrados
  1. 6 6
      compiler/systems/i_wasi.pas

+ 6 - 6
compiler/systems/i_wasi.pas

@@ -94,15 +94,15 @@ unit i_wasi;
                 jumpalignskipmax    : 0;
                 coalescealign   : 0;
                 coalescealignskipmax: 0;
-                constalignmin   : 0;
-                constalignmax   : 4;
+                constalignmin   : 4;
+                constalignmax   : 16;
                 varalignmin     : 4;
-                varalignmax     : 4;
+                varalignmax     : 16;
                 localalignmin   : 4;
-                localalignmax   : 4;
+                localalignmax   : 16;
                 recordalignmin  : 0;
-                recordalignmax  : 2;
-                maxCrecordalign : 4
+                recordalignmax  : 16;
+                maxCrecordalign : 16
               );
             first_parm_offset : 0;
             stacksize   : 262144;