Does (F) allocate a new object and assign it to one of its arguments?
| 281 | |
| 282 | // Does (F) allocate a new object and assign it to one of its arguments? |
| 283 | bool ExtAPI::is_arg_alloc(const FunObjVar* F) |
| 284 | { |
| 285 | return F && hasExtFuncAnnotation(F, "ALLOC_HEAP_ARG"); |
| 286 | } |
| 287 | |
| 288 | bool ExtAPI::is_alloc_stack_ret(const FunObjVar* F) |
| 289 | { |
no outgoing calls
no test coverage detected