| 1081 | |
| 1082 | |
| 1083 | void convertResult(ExprType inSrcType, const JitVal &inTarget, ExprType inToType) HXCPP_OVERRIDE |
| 1084 | { |
| 1085 | if (inSrcType!=etVoid && inSrcType!=etNull && inToType!=etVoid && inToType!=etNull) |
| 1086 | { |
| 1087 | convert( JitFramePos(frameSize, getJitType(inSrcType)), inSrcType, inTarget, inToType); |
| 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | |
| 1092 | void convertReturnReg(ExprType inSrcType, const JitVal &inTarget, ExprType inToType, bool asBool = false) HXCPP_OVERRIDE |
no test coverage detected