2017-01-12 96 views
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__ 

我以爲這是一個編譯器錯誤,但我想知道什麼是規避這種錯誤的方式,讓代碼執行警告和錯誤免費。

錯誤截圖: Error scrrenshot

+0

無論源代碼是否有效,ICE始終是編譯器錯誤。報告。 –

+0

這就是所有關於內部錯誤的說法嗎? –

+0

@TrevorHickey添加了完整的錯誤截圖。 – letsBeePolite

回答

0

看來報告的錯誤在GCC 6.X釋放冰釋前嫌。如果您遇到類似問題,請嘗試在最新版本的GCC上重現錯誤,以確認它是否早期被報告並糾正或不糾正。