Skip to content
Snippets Groups Projects
Commit 31ddf01a authored by an7s's avatar an7s
Browse files

Filter out _L_lock_* and _L_unlock_*

Former-commit-id: fd72cc279e6cab98e1d27b34a5a85a5fd46d3f45
parent f3b64cba
No related branches found
No related tags found
No related merge requests found
......@@ -410,6 +410,15 @@ else
continue;
}
// filter out _L_lock_*
// filter out _L_unlock_*
if (func->GetName().find("_L_lock_") == 0 || func->GetName().find("_L_unlock_") == 0)
{
cerr << "P1: filtering out: " << func->GetName() << endl;
numFuncFiltered++;
continue;
}
//perform the p1 transform on the given variant's function
bool rewriteFunction = p1Transform->rewrite(virp,func,undoList);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment