Skip to content

Commit

Permalink
#1: add deep copy to require string pass
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Sep 29, 2021
1 parent 37b535b commit 1b55eb6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/transform.cc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ StatementMatcher EmpireCallMatcher =
callExpr(
callee(
functionDecl(
matchesName("::empire::parallel_*") // hasName("::Kokkos::parallel_for")
anyOf(
matchesName("::empire::parallel_*"),
matchesName("::empire::deep_copy*")
)
)
)
).bind("callExpr");
Expand Down

0 comments on commit 1b55eb6

Please sign in to comment.