BUG: Unused Local Variables Are Unavailable in the DebuggerLast reviewed: March 8, 1996Article ID: Q148201 |
The information in this article applies to:
SYMPTOMSLocal variables flagged by the compiler as unused become unavailable in the debugger even if they have been initialized with the DATA statement.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONUsing Developer Studio build the following sample code. After building the project, start a debugging session. On the Build menu, click Debug, and then click Step Into. The variables "A" and "B" are not displayed in the locals window even though they have been initialized with the integer values of "1" and "2" respectively.
Sample CodeC Compile options needed: /Zi
INTEGER A, B DATA A / 1 / DATA B / 2 / PRINT *, 'HELLO' END |
Additional reference words: 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |