fpc/tests/webtbs/tw27811.pp
Jonas Maebe 9079227c56 * don't give an internalerror when trying to prefetch a regvar or even
something without a location at all; it's a hint/optional operation,
    so if there's nothing to prefetch just don't do anything
    (mantis #27811)

git-svn-id: trunk@30502 -
2015-04-08 20:35:13 +00:00

14 lines
153 B
ObjectPascal

{ %norun }
{$optimization regvar on}
procedure test;
var m,n: integer;
begin
for m := 100 downto 0 do begin
prefetch (m);
end;
end;
begin
end.