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

Method output_header

src/StatementFor.cpp:394–406  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

392}
393
394void
395StatementFor::output_header(std::ostream& out, int indent) const
396{
397 output_tab(out, indent);
398 out << "for (";
399 init.OutputAsExpr(out);
400 out << "; ";
401 test.Output(out);
402 out << "; ";
403 incr.OutputAsExpr(out);
404 out << ")";
405 outputln(out);
406}
407
408/*
409 *

Callers 1

output_reduced_stmMethod · 0.45

Calls 4

output_tabFunction · 0.85
outputlnFunction · 0.85
OutputAsExprMethod · 0.80
OutputMethod · 0.45

Tested by

no test coverage detected