| 476 | } |
| 477 | |
| 478 | void CLikeCodeGen::PrintCallInstr(CodeGenContext & ctx, CallInstruction * instr) |
| 479 | { |
| 480 | if (!instr->Type->IsVoid()) |
| 481 | { |
| 482 | auto varName = ctx.DefineVariable(instr); |
| 483 | ctx.Body << varName; |
| 484 | ctx.Body << " = "; |
| 485 | } |
| 486 | PrintCallInstrExpr(ctx, instr); |
| 487 | ctx.Body << ";\n"; |
| 488 | } |
| 489 | |
| 490 | void CLikeCodeGen::PrintCastF2IInstrExpr(CodeGenContext & ctx, Float2IntInstruction * instr) |
| 491 | { |
nothing calls this directly
no test coverage detected