mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:47:56 +02:00

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 -
14 lines
153 B
ObjectPascal
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.
|