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

Method MakeFuncInvocation

src/ExtensionMgr.cpp:106–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106FunctionInvocation *
107ExtensionMgr::MakeFuncInvocation(Function *curFunc, CGContext &cg_context)
108{
109 if (ExtensionMgr::extension_ == NULL) {
110 return FunctionInvocation::make_random(curFunc, cg_context);
111 }
112 else {
113 std::vector<ExtensionValue *> &values = ExtensionMgr::extension_->get_values();
114 return ExtensionMgr::extension_->MakeFuncInvocation(curFunc, values);
115 }
116}
117
118void
119ExtensionMgr::OutputHeader(std::ostream &out)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected