KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q43601: CodeView May Single Step onto a Comment Line

Article: Q43601
Product(s): See article
Version(s): 2.20   | 2.20
Operating System(s): MS-DOS | OS/2
Keyword(s): ENDUSER | buglist2.20 | mspl13_basic
Last Modified: 2-JUN-1989

When using CodeView to single step the following program, the current
execution line will be put on the first comment line. CodeView should
always skip over the comment line.

The program is compiled as required for running in CodeView. The
compiling command used could be the following:

   cl /Zi /Od test.c

Microsoft has confirmed this to be a problem with CodeView Version
2.20. We are researching the problem and will post new information as
it becomes available.

This problem has no effect on the application program's performance.

The following is the program:

/*   test.c   */
#include <stdio.h>
int i = 1 ;
void main (void)
{
if ( i )
     i = 0 ;
     /* first comment line */
else
     /* more comment */
     i = 1 ;
}

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.