| 156 | |
| 157 | #ifdef CPPIA_JIT |
| 158 | static void SLJIT_CALL setFloat(Array_obj<unsigned char> *inBuffer, int inAddr, double *inValue) |
| 159 | { |
| 160 | if (sizeof(ARG2)==sizeof(float)) |
| 161 | __hxcpp_memory_set_float(inBuffer,inAddr,*inValue); |
| 162 | else |
| 163 | __hxcpp_memory_set_double(inBuffer,inAddr,*inValue); |
| 164 | } |
| 165 | |
| 166 | void genCode(CppiaCompiler *compiler, const JitVal &inDest,ExprType destType) HXCPP_OVERRIDE |
| 167 | { |
nothing calls this directly
no test coverage detected