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

Method OutputInit

src/SplatExtension.cpp:103–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103void
104SplatExtension::OutputInit(std::ostream &out)
105{
106 out << "#ifdef __SPLAT__" << endl;
107 out << "void __splat_instrumentedCode()" << endl;
108 out << "#else" << endl;
109 out << "int main(void)" << endl;
110 out << "#endif" << endl;
111 out << "{" << endl;
112 AbsExtension::default_output_definitions(out, values_, true);
113 output_symbolics(out);
114}
115
116void
117SplatExtension::OutputFirstFunInvocation(std::ostream &out, FunctionInvocation *invoke)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected