Browse Source

* patch by Emelyanov Roman to allow 64 byte alignment in the $codealign directive, resolves #30934

git-svn-id: trunk@35033 -
florian 8 years ago
parent
commit
c2af5a104e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/aasmtai.pas

+ 1 - 1
compiler/aasmtai.pas

@@ -2980,7 +2980,7 @@ implementation
           if upper(classname)='TAI_ALIGN_ABSTRACT' then
           if upper(classname)='TAI_ALIGN_ABSTRACT' then
             internalerror(200709191);
             internalerror(200709191);
 {$endif EXTDEBUG}
 {$endif EXTDEBUG}
-          if b in [1,2,4,8,16,32] then
+          if b in [1,2,4,8,16,32,64] then
             aligntype := b
             aligntype := b
           else
           else
             aligntype := 1;
             aligntype := 1;