* */
| 438 | * |
| 439 | */ |
| 440 | Function * |
| 441 | Function::make_random(const CGContext& cg_context, const Type* type, const CVQualifiers* qfer) |
| 442 | { |
| 443 | Function* f = make_random_signature(cg_context, type, qfer); |
| 444 | ERROR_GUARD(NULL); |
| 445 | f->GenerateBody(cg_context); |
| 446 | ERROR_GUARD(NULL); |
| 447 | return f; |
| 448 | } |
| 449 | |
| 450 | /* |
| 451 | * |
nothing calls this directly
no test coverage detected