* */
| 132 | * |
| 133 | */ |
| 134 | void |
| 135 | StatementReturn::Output(std::ostream &out, FactMgr* /*fm*/, int indent) const |
| 136 | { |
| 137 | output_tab(out, indent); |
| 138 | // XXX --- Fix this. Outputting two stmts instead of one is bad mojo. |
| 139 | if (CGOptions::depth_protect()) { |
| 140 | out << "DEPTH--;" << endl; |
| 141 | } |
| 142 | out << "return "; |
| 143 | var.Output(out); |
| 144 | out << ";"; |
| 145 | outputln(out); |
| 146 | } |
| 147 | |
| 148 | /////////////////////////////////////////////////////////////////////////////// |
| 149 |
nothing calls this directly
no test coverage detected