| 23 | #define LAST_OP(self) self->program[self->program_len-1].op |
| 24 | |
| 25 | struct NumExprOperation |
| 26 | { |
| 27 | NE_WORD op; |
| 28 | NE_REGISTER ret; |
| 29 | NE_REGISTER arg1; |
| 30 | NE_REGISTER arg2; |
| 31 | NE_REGISTER arg3; |
| 32 | }; |
| 33 | |
| 34 | // We can pack the tuples in Python and pass them in directly? |
| 35 | // General idea here is to not access the Python API directly after initial |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…