0
[修正] - 在評論內部編譯錯誤C++的Cilk加
給出解釋[更新,錯誤畫面]
使用gcc/5.4.0編譯時,我得到一個編譯錯誤。以下是報告的錯誤:
internal compiler error: in lower_stmt, at gimple-low.c:397 cilk_spawn m_sparsify_graph_helper__(mdl, n_pa, n_ch, score2beat);
以下是導致代碼片段錯誤:
void m_sparsify_graph_helper__(MDL mdl, set_type pa, set_type ch, std::vector<double> score2beat) {
//cilk::reducer<cilk::op_list_append<RNode_>> rlist;
//"rlist" - defined in the class as a private variable
if (ch == 0) { return; }
set_type n_ch = ch;
// Some more code -- which I am very sure is not causing error
int lsb = n_ - 1;
for (; lsb >= 0; --lsb) { if (in_set(pa, lsb)) { break; } }
if (lsb == n_ - 1) { return; }
set_type n_pa = set_add(pa, lsb + 1);
int n_pa_sz = set_size(n_pa);
if (n_pa_sz >= n_) { return; }
BitCombination comb(n_pa, n_pa_sz, n_);
for (;;) {
n_pa = comb.data();
// If cilk_spawn keyword removed it compiles fine.
cilk_spawn m_sparsify_graph_helper__(mdl, n_pa, n_ch, score2beat);
if (!comb.next() || in_set(n_pa, n_ - 1)) { break; }
}
}// m_sparsify_graph_helper__
我以爲這是一個編譯器錯誤,但我想知道什麼是規避這種錯誤的方式,讓代碼執行警告和錯誤免費。
無論源代碼是否有效,ICE始終是編譯器錯誤。報告。 –
這就是所有關於內部錯誤的說法嗎? –
@TrevorHickey添加了完整的錯誤截圖。 – letsBeePolite