gpt4 book ai didi

c++ - Apple LLVM 4.2 段错误使用基于范围的循环和引用

转载 作者:太空狗 更新时间:2023-10-29 23:51:59 25 4
gpt4 key购买 nike

我不确定这是否是 Xcode 4.6.3 (4H1503) 附带的 LLVM 的实际错误,或者我是否正在做一些不符合犹太教规的事情。代码片段如下

for(auto &a : matrix[j]) {
a = false;
}

其中 matrix 是包含 bool 值的 vectorvector。我已经使用 Visual Studio 2012 开发了一段时间,这似乎不是问题,但是应用程序也需要在 Mac 上运行,所以我继续测试它......我有点很惊讶我无法编译它。经过仔细检查,我发现我从 clang 本身得到了一个完整的段错误,这通常表明正在进行非常糟糕的恶作剧。所以我迅速隔离了这段代码,并使用整数索引和所有爵士乐将循环更改为更农民的版本。它就像一个魅力。

我假设我的原始循环应该正常工作是否正确(我什至在 SO 中看到过类似的事情,而且 VS2012 没有什么可说的,真的)还是我犯了一个严重的错误并且你真的不应该使用那样的引用吗?

在向 Apple 报告错误之前,我想知道这一点。

编辑

#include <vector>

using namespace std;

int main(void) {
vector<vector<bool>> matrix = vector<vector<bool>>(10, vector<bool>(5, false));;

for(auto &a : matrix[0]) {
a = true;
}

return 0;
}

clang -x c++ -std=c++11 -stdlib=libc++ 编译产生

0  clang 0x0000000100c57bb2 main + 12932498
Stack dump:
0. Program arguments: /usr/bin/clang -cc1 -triple x86_64-apple-macosx10.8.0 -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -main-file-name rbloop.cpp -pic-level 2 -mdisable-fp-elim -masm-verbose -munwind-tables -target-cpu core2 -target-linker-version 136 -resource-dir /usr/bin/../lib/clang/4.2 -fmodule-cache-path /var/folders/ny/y4mgzkq14db49kfh7rnvcnshqvrkjz/T/clang-module-cache -stdlib=libc++ -std=c++11 -fdeprecated-macro -fdebug-compilation-dir /Users/af6539/src -ferror-limit 19 -fmessage-length 120 -stack-protector 1 -mstackrealign -fblocks -fobjc-runtime=macosx-10.8.0 -fobjc-dispatch-method=mixed -fobjc-default-synthesize-properties -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -o /var/folders/ny/y4mgzkq14db49kfh7rnvcnshqvrkjz/T/rbloop-AUzjp6.o -x c++ rbloop.cpp
1. rbloop.cpp:9:22: current parser token '{'
2. rbloop.cpp:6:16: parsing function body 'main'
3. rbloop.cpp:6:16: in compound statement ('{}')
clang: error: unable to execute command: Segmentation fault: 11
clang: error: clang frontend command failed due to signal (use -v to see invocation)
Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn)
Target: x86_64-apple-darwin12.4.0
Thread model: posix
clang: note: diagnostic msg: PLEASE submit a bug report to http://developer.apple.com/bugreporter/ and include the crash backtrace, preprocessed source, and associated run script.
clang: note: diagnostic msg:
********************

PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang: note: diagnostic msg: /var/folders/ny/y4mgzkq14db49kfh7rnvcnshqvrkjz/T/rbloop-HcbryW.cpp
clang: note: diagnostic msg: /var/folders/ny/y4mgzkq14db49kfh7rnvcnshqvrkjz/T/rbloop-HcbryW.sh
clang: note: diagnostic msg:

********************

我没有粘贴最后提到的文件,因为它们大得离谱,而且似乎没有添加任何信息(只是一堆库标题,然后我在文件末尾粘贴了上面的确切代码) .此外,如果您拥有与我相同的编译器,您应该能够自己获得它们。

最佳答案

让编译器向您转储堆栈跟踪始终是编译器中的错误。如果编译器不喜欢您的代码,它应该给您一个体面的错误消息,而不是其内部的堆栈跟踪。

根据您的示例代码,我希望按照以下方式进行诊断:

test.cpp:8:15: error: non-const lvalue reference to type '__bit_reference<[2 * ...]>' cannot bind to a temporary of type
'__bit_reference<[2 * ...]>'
for(auto &a : matrix[0]) {
^ ~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/vector:2127:14: note:
selected 'begin' function with iterator type 'iterator' (aka '__bit_iterator<std::__1::vector<bool,
std::__1::allocator<bool> >, false>')
iterator begin() _NOEXCEPT
^
1 error generated.

关于c++ - Apple LLVM 4.2 段错误使用基于范围的循环和引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17971894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com