Commit 79ff2b3d authored by Julia Lawall's avatar Julia Lawall Committed by Michal Marek

Coccinelle: pm_runtime: reduce rule applicability

Rule r is only used in org or report mode, so only execute it in those
cases.
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
parent c7eaa887
...@@ -78,7 +78,7 @@ ret = pm_runtime_api(...); ...@@ -78,7 +78,7 @@ ret = pm_runtime_api(...);
// For org and report mode // For org and report mode
//---------------------------------------------------------- //----------------------------------------------------------
@r depends on runtime_bad_err_handle exists@ @r depends on runtime_bad_err_handle && (org || report) exists@
position p1, p2; position p1, p2;
identifier pm_runtime_api; identifier pm_runtime_api;
expression ret; expression ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment