From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,6b3ebf057333800c X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news1.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!wn13feed!worldnet.att.net!bgtnsc05-news.ops.worldnet.att.net.POSTED!53ab2750!not-for-mail Newsgroups: comp.lang.ada From: anon@anon.org (anon) Subject: Re: Largest size array in Gnat 2005 for the PC? Reply-To: anon@anon.org (anon) References: <13idb3jbm28kfbe@corp.supernews.com> X-Newsreader: IBM NewsReader/2 2.0 Message-ID: <9QJVi.302202$ax1.32179@bgtnsc05-news.ops.worldnet.att.net> Date: Tue, 30 Oct 2007 17:27:33 GMT NNTP-Posting-Host: 12.65.102.56 X-Complaints-To: abuse@worldnet.att.net X-Trace: bgtnsc05-news.ops.worldnet.att.net 1193765253 12.65.102.56 (Tue, 30 Oct 2007 17:27:33 GMT) NNTP-Posting-Date: Tue, 30 Oct 2007 17:27:33 GMT Organization: AT&T Worldnet Xref: g2news2.google.com comp.lang.ada:2648 Date: 2007-10-30T17:27:33+00:00 List-Id: Since your using 32-bit version of XP. then it is linmited to 32 bits. GNAT is ported to over 30 operating systems and CPUs. Here is a subset of a few type and sizes if your CPU and operating system is limited to 32 bits then GNAT defines: System.Memory_Size : constant := ( 2 ** 32 ) ; else using the ia64/Alpha/s390x/86-64 processors and a 64-bits OS then GNAT set the size to: System.Memory_Size : constant := ( 2 ** 64 ) ; In <13idb3jbm28kfbe@corp.supernews.com>, "ME" writes: >What is the largest array (in storage units) that you can declare in Gnat >2005 for the PC? >Does pragma Storage_ size affect this and if so where would you place it in >a procedure? > >