| 508 | ctx.Body << "))"; |
| 509 | } |
| 510 | void CLikeCodeGen::PrintCastI2FInstr(CodeGenContext & ctx, Int2FloatInstruction * instr) |
| 511 | { |
| 512 | auto varName = ctx.DefineVariable(instr); |
| 513 | ctx.Body << varName; |
| 514 | ctx.Body << " = "; |
| 515 | PrintCastI2FInstrExpr(ctx, instr); |
| 516 | ctx.Body << ";\n"; |
| 517 | } |
| 518 | |
| 519 | bool CLikeCodeGen::AppearAsExpression(ILInstruction & instr, bool force) |
| 520 | { |
nothing calls this directly
no test coverage detected