| 207 | } |
| 208 | |
| 209 | void genCode(CppiaCompiler *compiler, const JitVal &inDest,ExprType destType) HXCPP_OVERRIDE |
| 210 | { |
| 211 | if (destType==etFloat && isMemoryVal(inDest) ) |
| 212 | { |
| 213 | compiler->callNative( (void *)run, inDest.as(jtFloat)); |
| 214 | } |
| 215 | else |
| 216 | { |
| 217 | JitTemp temp(compiler,jtFloat); |
| 218 | compiler->callNative( (void *)run, temp); |
| 219 | compiler->convert(temp, etFloat, inDest, destType); |
| 220 | } |
| 221 | } |
| 222 | #endif |
| 223 | }; |
| 224 |
nothing calls this directly
no test coverage detected