fpc/tests/webtbs/tw38069.pp
florian 089e13396a * ensure that changed compiler options do not cause values
ending up in registers which cannot be hold in registers

git-svn-id: trunk@47415 -
2020-11-14 18:40:58 +00:00

13 lines
210 B
ObjectPascal

{ %cpu=i386 }
{$mode objfpc}
{$OPTIMIZATION REGVAR}
{.$FPUTYPE SSE2} //uncommenting this resolves the problem
uses uw38069;
var z: complex;
n: integer;
begin
z := z*n; //internal error 200604201
end.