We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f381b commit 3e9a4ecCopy full SHA for 3e9a4ec
src/FlowAware.cpp
@@ -359,7 +359,6 @@ Vector IR2Vec_FA::func2Vec(Function &F) {
359
360
ReversePostOrderTraversal<Function *> RPOT(&F);
361
362
-#pragma omp parallel for
363
for (auto *b : RPOT) {
364
for (auto &I : *b) {
365
unsigned opnum;
@@ -372,8 +371,7 @@ Vector IR2Vec_FA::func2Vec(Function &F) {
372
371
if (argI->getParent() == I.getParent())
373
lists.push_back(argI);
374
375
-#pragma omp critical
376
- { killMap[&I] = lists; }
+ killMap[&I] = lists;
377
}
378
379
0 commit comments