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=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 109fba,5c666efe108c1065 X-Google-Attributes: gid109fba,public X-Google-Thread: fac41,5c666efe108c1065 X-Google-Attributes: gidfac41,public X-Google-Thread: 1108a1,5c666efe108c1065 X-Google-Attributes: gid1108a1,public X-Google-Thread: 114809,5c666efe108c1065 X-Google-Attributes: gid114809,public X-Google-Thread: f43e6,bc16c150b1957917 X-Google-Attributes: gidf43e6,public X-Google-Thread: 103376,5c666efe108c1065 X-Google-Attributes: gid103376,public X-Google-Thread: 114917,5c666efe108c1065 X-Google-Attributes: gid114917,public X-Google-Thread: 1014db,5c666efe108c1065 X-Google-Attributes: gid1014db,public From: Michael Chapman Subject: Re: Help you C++ Debuggers! Date: 1997/01/22 Message-ID: <32E6DEDA.7386@hl.siemens.de>#1/1 X-Deja-AN: 211517602 references: <32DEF075.41C6@bme.ri.ccf.org> <1997Jan20.144447.5581@news> content-type: text/plain; charset=us-ascii organization: Siemens AG, Semiconductor Group mime-version: 1.0 newsgroups: comp.lang.c,comp.lang.c++,comp.lang.asm.x86,comp.lang.smalltalk,comp.lang.eiffel,comp.lang.ada,comp.object,comp.software-eng x-mailer: Mozilla 2.02 (Win16; I) Date: 1997-01-22T00:00:00+00:00 List-Id: Chris Engebretson wrote: [snip] > On the other hand, if you write > > char array[8 * 1024 * 1024]; > > you may very well run into problems, depending on the definition > of size_t. Since declaring an automatic array of this size is > completely ridiculous, though, I'd hardly consider this a fault. > This is not at all ridiculous. I have had good reasons in the past to declare considerably bigger automatic arrays. The above after all only uses up 23 of your 64 address bits if you are on a real machine ;-)