Kotlin: Performance tweak

This commit is contained in:
Ian Lynagh
2022-04-25 15:41:53 +01:00
parent 65afd0d776
commit b9be79473a

View File

@@ -53,7 +53,7 @@ private predicate returnStep(Node n1, Node n2) {
exists(ReturnStmt ret, Method m |
ret.getEnclosingCallable() = m and
ret.getResult() = n1.asExpr() and
m = dispatchCand(n2.asExpr())
pragma[only_bind_out](m) = dispatchCand(n2.asExpr())
)
}