mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00

+ implemented support for x86-64 * more than 2 GB static data requires to use the --no-relax option on linux git-svn-id: trunk@47651 -
12 lines
260 B
ObjectPascal
12 lines
260 B
ObjectPascal
{ %target=linux,darwin,freebsd,netbsd,openbsd,sunos,beos,haiku }
|
|
{ %cpu=x86_64,powerpc64,mips64,sparc64,ia64,alpha }
|
|
{ %opt=-Xa }
|
|
|
|
{ windows does not support statics > 2GB }
|
|
var
|
|
i : longint;
|
|
a : array[0..1500000000] of longint;
|
|
begin
|
|
writeln(a[i]);
|
|
end.
|