mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 00:30:34 +02:00
*** empty log message ***
This commit is contained in:
parent
6bef8f4732
commit
a7a2d53494
13
tests/webtbs/tbug852.pp
Normal file
13
tests/webtbs/tbug852.pp
Normal file
@ -0,0 +1,13 @@
|
||||
type
|
||||
TFloat80Array = array [0..1000000] of Extended;
|
||||
|
||||
procedure AddFloat80Proc(var Vector1; const Vector2; Count: Integer);
|
||||
var
|
||||
I: Integer;
|
||||
begin
|
||||
for I:=0 to Count - 1 do
|
||||
TFloat80Array(Vector1)[I]:=TFloat80Array(Vector1)[I] + TFloat80Array(Vector2)[I];
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user