内部编译错误c ++ cilk plus

时间:2017-01-12 05:35:14

标签: c++ c++11 gcc cilk-plus cilk

[固定] - 评论中给出的解释

[更新时显示错误截图]
   使用gcc / 5.4.0编译时出现编译错误。以下是报告的错误:

  

内部编译器错误:在lower_stmt中,在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

1 个答案:

答案 0 :(得分:0)

在GCC 6.X版本中,似乎报告的错误被解决了。

仅供参考,如果您遇到类似问题,请尝试重现最新版GCC上的错误,以确认是否早先报告并纠正过。