Article ID: 216181 - Last Review: May 7, 2001 - Revision: 1.0 FIX: Incorrect Code Generated with /Og OptimizationThis article was previously published under Q216181 SYMPTOMS
With global optimization (/Og) enabled, the Visual C++ 6.0 compiler may generate incorrect code for functions that pass a structure by value. This manifests itself as a structure which appears to have incorrect values after being passed into the function.
CAUSE
Visual C/C++ functions make local copies of its arguments to be referenced during a function's execution. Under a few circumstances, global optimization can cause the stack space for the copy of the structure to be allocated without copying the field values.
RESOLUTION
Disable global optimizations. Global optimizations can be disabled for the entire project, or for a particular source file by removing /Og from either the project's release build compiler settings or an individual file's release build compiler settings. NOTE: /O1 (minimize size) and /O2 (maximize speed) are composite switches that include /Og. If you are using /O1 or /O2 then disable global optimizations by adding /Og to the appropriate compiler settings. Global optimization can also be disabled on a function by function basis via the use of #pragma optimize, as in the following example: STATUSMicrosoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article. This bug was corrected in Visual Studio 6.0 Service Pack 3. For more information about Visual Studio service packs, please see the following articles in the Microsoft Knowledge Base:
| Article Translations
|
Back to the top
