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

Method OutputFirstFunInvocation

src/ExtensionMgr.cpp:157–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155}
156
157void
158ExtensionMgr::OutputFirstFunInvocation(std::ostream &out, FunctionInvocation *invoke)
159{
160 assert(invoke);
161 if (ExtensionMgr::extension_ == NULL) {
162 out << " ";
163 invoke->Output(out);
164 out << ";" << endl;
165 }
166 else {
167 ExtensionMgr::extension_->OutputFirstFunInvocation(out, invoke);
168 }
169}
170
171////////////////////////////////////////////////////////////////////////////

Callers

nothing calls this directly

Calls 1

OutputMethod · 0.45

Tested by

no test coverage detected