MCPcopy Create free account
hub / github.com/csmith-project/csmith / has_simple_params

Method has_simple_params

src/FunctionInvocation.cpp:403–414  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

401}
402
403bool
404FunctionInvocation::has_simple_params(void) const
405{
406 size_t i;
407 for (i=0; i<param_value.size(); i++) {
408 const Expression* e = param_value[i];
409 if (e->term_type == eFunction) {
410 return false;
411 }
412 }
413 return true;
414}
415
416vector<intvec>
417FunctionInvocation::permute_param_oders(void) const

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected