home *** CD-ROM | disk | FTP | other *** search
- Q32208 Internal Compiler Error: exphelp.c 1.75, Line 452
- C Compiler
- 5.10
- MS-DOS
-
- Summary:
- The code below generates the following internal compiler error:
-
- foo.c(10) : fatal error C1001: Internal Compiler Error
- (compiler file '@(#)exphelp.c:1.75', line 452)
- Contact Microsoft Technical Support
-
- To work around the problem, make the array a global variable. The
- sample code below will not compile even without the internal error
- because you cannot allocate more than 32K of local variables; the
- sample code attempts to declare about 100K.
- Microsoft has confirmed this to be a problem with Version 5.10 of
- the C compiler. We are researching this problem and will post new
- information as it becomes available.
-
- More Information:
- The following code demonstrates the problem:
-
- main()
- {
- char huge a[100000];
- long int i, j;
- i = 0;
- j = a[i];
-
- }
-
- Keywords: buglist5.10 qfbv
- Updated 88/07/21 03:19
-