Q67778: C1001: Internal Compiler Error: regMD.c, Line 1017
Article: Q67778
Product(s): See article
Version(s): 6.00a | 6.00a
Operating System(s): MS-DOS | OS/2
Keyword(s): ENDUSER | buglist6.00a | mspl13_c
Last Modified: 28-DEC-1990
When compiling with /Oe optimization under the compact or large memory
models, the code below generates the following internal compiler error
with Microsoft C version 6.00a:
fatal error c1001: Internal Compiler Error
(compiler file '@(#)regMD.c:1.110',line 1017)
Contact Microsoft Product Support Services
Sample Code
-----------
char hex_digits[]={"f"};
int x(char *resultp, int item)
{
char *s;
int hundreds;
s=resultp;
hundreds=100;
if(hundreds)
*s++='0';
*s++=' ';
*s++=hex_digits[item/16];
*s++=hex_digits[item%16];
}
The following are valid workarounds for the problem:
1. Compile without the /Oe optimization.
2. Use the #pragma optimize switch in the code to turn off the
offending optimizations for the particular function.
3. Compile under the small or medium memory models.
THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.
Copyright Microsoft Corporation 1986-2002.