我已将代码缩减到以下内容以说明我的问题:
#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值的东西?
答案 0 :(得分:10)
绝对是编译器错误。 顺便说一句,它不是用我的GCC版本(4.4.5)复制的。
已知SuSE 9.1附带的GCC 3.3.3版本已被破坏(参见here)。
答案 1 :(得分:2)
这是一个错误。检查是否已报告错误,如果没有,则报告。