Q40113: Incorrect Code Generation with /J
Article: Q40113
Product(s): See article
Version(s): 5.00 5.10 | 5.10
Operating System(s): MS-DOS | OS/2
Keyword(s): ENDUSER | buglist5.00 buglist5.10 | mspl13_c
Last Modified: 5-JAN-1989
If the following program is compiled with the /J compiler option
(which changes the default for char type from signed to unsigned) in
the Microsoft C Optimizing Compiler Versions 5.00 and 5.10, it will
not calculate the value of the long integer variable "result"
correctly:
#include <stdio.h>
void main(void)
{
unsigned long result = 'b';
result = result - 'a' + 1 ;
printf("result = %lx", result) ;
}
Compiled without /J, the program works correctly. Replacing "-a+1"
with "-96", or using a char type variable to store the value "a" also
prevents the problem.
Microsoft has confirmed this to be a problem in Versions 5.00 and
5.10. We are researching this problem and will post new information as
it becomes available.
The following is the assembly-code listing generated with /J :
;|*** unsigned long result = 'b';
mov WORD PTR [bp-4],98 ;result
mov WORD PTR [bp-2],0
;|***
;|*** result = result - 'a' + 1 ;
add WORD PTR [bp-4],-96 ;This sets the carry flag
;incorrectly.
adc WORD PTR [bp-2],0
The following is the code generated without /J :
;|*** unsigned long result = 'b';
mov WORD PTR [bp-4],98 ;result
mov WORD PTR [bp-2],0
;|***
;|*** result = result - 'a' + 1 ;
sub WORD PTR [bp-4],96 ;result
sbb WORD PTR [bp-2],0
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.