* fixed test

This commit is contained in:
florian 2005-02-08 21:02:43 +00:00
parent e348a6ad83
commit b0d04907e6
2 changed files with 11 additions and 5 deletions

View File

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

View File

@ -1,5 +1,4 @@
{ %target=linux }
{ %cpu=i386 }
{ Source provided for Free Pascal Bug Report 3161 }
{ Submitted by "Michalis Kamburelis" on 2004-06-12 }
@ -8,12 +7,14 @@
{$mode delphi}
uses
Libc,
SysUtils;
initc,
SysUtils,
math;
var A:Extended;
err : boolean;
begin
SetExceptionMask([]);
err:=true;
try
{ When I don't do "uses Libc",
@ -24,6 +25,9 @@ begin
err:=false;
end;
if err then
halt(1);
begin
writeln('error');
halt(1);
end;
end.