Bläddra i källkod

* sse operands have to aligned to 16 instead of 8 byte boundaries
* fixed alignment directive in the code

git-svn-id: trunk@9457 -

Jonas Maebe 17 år sedan
förälder
incheckning
b546eeff6c
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      tests/webtbs/tw2998.pp

+ 2 - 2
tests/webtbs/tw2998.pp

@@ -1,5 +1,5 @@
 { %cpu=i386 }
-{ %OPT=-OaVARMIN=8 -Cg- }
+{ %OPT=-OaVARMIN=16 -Cg- }
 
 { Source provided for Free Pascal Bug Report 2998 }
 { Submitted by "bartek" on  2004-03-02 }
@@ -12,7 +12,7 @@ uses
 type
         vector4 = array[0..3] of single;
 
-{$maxalignment 8}
+{$codealign varmax 16}
 var
         a,b,c :vector4;
 begin