使用 g++ 和 -Og 选项优化的变量

Variables optimized out with g++ and the -Og option

当我使用 -Og 选项用 g++ 编译我的 C++ 程序时,我看到的变量是 <optimized out>,而且当前行有时会跳过。在此优化级别是否会出现这种行为,还是我遇到了一些问题? gcc 的手册页说:

-Og

Optimize debugging experience. -Og enables optimizations that do not interfere with debugging. It should be the optimization level of choice for the standard edit-compile-debug cycle, offering a reasonable level of optimization while maintaining fast compilation and a good debugging experience.

因此我没想到会有这种行为。在我的系统上,我有 g++ 4.9.2 版和 gdb 7.7.1 版。

这是使用 -Og 选项编译时的正常行为。在此优化级别,编译器只要遵守 as-if rule 就可以进行优化。这可能包括删除变量(或转换为常量),以及删除未使用的函数。

建议要么习惯跳过,要么用-O0选项编译。