Mmmm, i'm not sure if it was *exactly* 2.01 release or 2.01 alpha or 2.02 alpha,
nor i'm not sure 'tis the real bug report, simply it doesn't work on PC gcc the
same thing those do with gcc under UNIX (AIX).
Following program, compiled with gcc crashes with violation message:
int main(void)
{
double a[100000];
a[999]=6;
printf("%e \n",a[999]);
}
when array of doubles (a) is placed outside of main() or dynamic allocation used
(malloc()) there's no problem. My thought it is poor stack management or some-
thing like that.
This seems VERY WEIRD to me, since DJGPP is 32-bit development system - the
array (a) should use only 800,000 bytes!
All variants of the program listed above works for me compiled with gcc under
AIX 4.2
Hoping 'twas not too laym, g00d luck!