| 87 | } |
| 88 | |
| 89 | void |
| 90 | DFSOutputMgr::Output() |
| 91 | { |
| 92 | std::ostream &out = get_main_out(); |
| 93 | |
| 94 | OutputGlobalVariables(out); |
| 95 | if (!CGOptions::compact_output()) |
| 96 | OutputForwardDeclarations(out); |
| 97 | OutputFunctions(out); |
| 98 | |
| 99 | if (CGOptions::step_hash_by_stmt()) { |
| 100 | OutputMgr::OutputHashFuncDef(out); |
| 101 | OutputMgr::OutputStepHashFuncDef(out); |
| 102 | } |
| 103 | |
| 104 | if (!CGOptions::compact_output()) |
| 105 | OutputMain(out); |
| 106 | } |
| 107 | |
| 108 | std::ostream & |
| 109 | DFSOutputMgr::get_main_out() |
nothing calls this directly
no test coverage detected