5

我已将代码简化为以下内容以说明我的问题:

#include <iostream>
#include <stack>
#include <utility>

std::pair<double,double> test(double a, double b)
{
    std::stack<int> my_stack;
    return std::make_pair<double,double>(a,b);
}

int main()
{
    std::pair<double,double> p = test(1.1,2.2);
    std::cout << p.first << " " << p.second << "\n";

    return 0;
}

当我使用 gcc -O1 标志时,来自 test() 函数的返回值被破坏。这是一些示例输出:

$ gcc -O2 a.cxx  -lstdc++
$ ./a.out
1.1 2.2
$ gcc -O1 a.cxx  -lstdc++
$ ./a.out
2.60831e-317 2.60657e-317
$ gcc -v
Reading specs from /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.3/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-    prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada --disable-checking --libdir=/usr/lib64 --enable-libgcj --with-gxx-include-dir=/usr/include/g++ --with-slibdir=/lib64 --with-system-zlib --enable-shared --enable-__cxa_atexit x86_64-suse-linux Thread model: posix
gcc version 3.3.3 (SuSE Linux)

此代码适用于除“-O1”之外的所有 gcc 优化标志。如果我删除 my_stack 的声明,它也可以工作。您会将其归类为编译器错误,还是我缺少有关 std::stack 并返回 std::pair 值的内容?

4

2 回答 2

11

绝对是编译器错误。顺便说一句,我的 GCC 版本(4.4.5)没有复制它。

众所周知,SuSE 9.1 附带的 GCC 3.3.3 版本已损坏(请参阅此处)。

于 2010-11-01T18:21:36.673 回答
3

这是一个错误。检查是否已报告该错误,如果没有,请报告。

于 2010-11-01T18:22:43.277 回答