| 109 | }; |
| 110 | |
| 111 | static inline float unsigned_to_float(unsigned u) |
| 112 | { |
| 113 | FloatAndUnsigned fu; |
| 114 | fu.u = u; |
| 115 | return fu.f; |
| 116 | } |
| 117 | |
| 118 | bool run(const unsigned *byte_code, const float *variables, Stack &stack, ComputeFunction compute_function) |
| 119 | { |