| 430 | } |
| 431 | |
| 432 | void CLikeCodeGen::PrintSelectInstr(CodeGenContext & ctx, SelectInstruction * instr) |
| 433 | { |
| 434 | auto varName = ctx.DefineVariable(instr); |
| 435 | ctx.Body << varName << " = "; |
| 436 | PrintSelectInstrExpr(ctx, instr); |
| 437 | ctx.Body << ";\n"; |
| 438 | } |
| 439 | |
| 440 | void CLikeCodeGen::PrintCallInstrExprForTarget(CodeGenContext & ctx, CallInstruction * instr, String const& name) |
| 441 | { |
nothing calls this directly
no test coverage detected