| 383 | } |
| 384 | |
| 385 | void CLikeCodeGen::PrintUnaryInstr(CodeGenContext & ctx, UnaryInstruction * instr) |
| 386 | { |
| 387 | auto varName = ctx.DefineVariable(instr); |
| 388 | ctx.Body << varName << " = "; |
| 389 | PrintUnaryInstrExpr(ctx, instr); |
| 390 | ctx.Body << ";\n"; |
| 391 | } |
| 392 | |
| 393 | void CLikeCodeGen::PrintAllocVarInstrExpr(CodeGenContext & ctx, AllocVarInstruction * instr) |
| 394 | { |
nothing calls this directly
no test coverage detected