제출 #1167590

#제출 시각아이디문제언어결과실행 시간메모리
1167590lizaCommuter Pass (JOI18_commuter_pass)C++20
0 / 100
2095 ms10844 KiB
#include <bits/stdc++.h>
#pragma GCC optimize("03, unroll-loops")
#pragma GCC target ("avx2,bmi,bmi2,popcnt,lzcnt")
using namespace std;

const int N = 100005;
vector<pair<int, int>> graph[N];

int main()
{
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    int n, m, s, t, u, v; cin >> n >> m >> s >> t >> u >> v;

    for(int i = 0; i < m; i++)
    {
        int a, b, c;
        cin >> a >> b >> c;
        graph[a].push_back({b, c});
        graph[b].push_back({a, c});
    }
    priority_queue <pair<int, int>> pq;
    int ds[100005]={0};
    ds[s]=0;
    int priv = s;
    pq.push({0, s});
    while(pq.size())
    {
        pair<int,int> x = pq.top();
        pq.pop();
        for(auto i: graph[x.second])
        {
            if(i.first==priv)continue;
            if(ds[i.first]==0 || ds[i.first] > x.first+i.second)
            {
                pq.push({x.first+i.second, i.first});
                ds[i.first]=x.first+i.second;
            }
        }
        priv=x.second;
    }

    int dt[100005]={0};
    dt[t]=0;
    priv = t;
    pq.push({0, t});
    while(pq.size())
    {
        pair<int,int> x = pq.top();
        pq.pop();
        for(auto i: graph[x.second])
        {
            if(i.first==priv)continue;
            if(dt[i.first]==0 || dt[i.first] > x.first+i.second)
            {
                pq.push({x.first+i.second, i.first});
                dt[i.first]=x.first+i.second;
            }
        }
        priv=x.second;
    }

    int dv[100005]={0};
    dv[v]=0;
    priv = v;
    pq.push({0, v});
    while(pq.size())
    {
        pair<int,int> x = pq.top();
        pq.pop();
        for(auto i: graph[x.second])
        {
            if(i.first==priv)continue;
            if(dv[i.first]==0 || dv[i.first] > x.first+i.second)
            {
                pq.push({x.first+i.second, i.first});
                dv[i.first]=x.first+i.second;
            }
        }
        priv=x.second;
    }
    /*
    int du[100005]={0};
    du[u]=0;
    priv = u;
    pq.push({0, u});
    while(pq.size())
    {
        pair<int,int> x = pq.top();
        pq.pop();
        for(auto i: graph[x.second])
        {
            if(i.first==priv)continue;
            if(du[i.first]==0 || du[i.first] > x.first+i.second)
            {
                pq.push({x.first+i.second, i.first});
                du[i.first]=x.first+i.second;
            }
        }
        priv=x.second;
    }
    */
    long long rezv= LONG_MAX;
    for(int i = 1; i <= n; i++)
    {
        if(dv[i] < rezv)
        {
            if(dt[i]+ds[i]==ds[t])
            {
                rezv=dv[i];
            }
        }
    }
    cout << rezv << "\n";
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

commuter_pass.cpp:2:40: warning: bad option '-f unroll-loops' to pragma 'optimize' [-Wpragmas]
    2 | #pragma GCC optimize("03, unroll-loops")
      |                                        ^
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
    3 | #pragma GCC target ("avx2,bmi,bmi2,popcnt,lzcnt")
      |                                                 ^
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:3:49: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
commuter_pass.cpp:9:10: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
    9 | int main()
      |          ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...