* avoid generation of avx code before the check if avx is supported

git-svn-id: trunk@27582 -
This commit is contained in:
florian 2014-04-14 18:18:29 +00:00
parent 07e90aaa24
commit 0a312a783e

View File

@ -13,6 +13,7 @@ procedure testsingle;
l1:=2;
l2:=3;
l3:=4;
s0:=0;
l0:=fma(l1,l2,l3);
writeln(l0);
if l0<>10.0 then
@ -56,6 +57,7 @@ procedure testdouble;
l1:=2;
l2:=3;
l3:=4;
d0:=0;
l0:=fma(l1,l2,l3);
writeln(l0);
if l0<>10.0 then