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

Method Output

src/StatementBreak.cpp:126–137  ·  view source on GitHub ↗

* */

Source from the content-addressed store, hash-verified

124 *
125 */
126void
127StatementBreak::Output(std::ostream &out, FactMgr* /*fm*/, int indent) const
128{
129 output_tab(out, indent);
130 out << "if (";
131 test.Output(out);
132 out << ")";
133 outputln(out);
134 output_tab(out, indent+1);
135 out << "break;";
136 outputln(out);
137}
138
139bool
140StatementBreak::visit_facts(vector<const Fact*>& inputs, CGContext& cg_context) const

Callers

nothing calls this directly

Calls 2

output_tabFunction · 0.85
outputlnFunction · 0.85

Tested by

no test coverage detected