** Check whether instruction sets top for next instruction, that is, ** it results in multiple values. */
| 115 | ** it results in multiple values. |
| 116 | */ |
| 117 | int luaP_isOT (Instruction i) { |
| 118 | OpCode op = GET_OPCODE(i); |
| 119 | switch (op) { |
| 120 | case OP_TAILCALL: return 1; |
| 121 | default: |
| 122 | return testOTMode(op) && GETARG_C(i) == 0; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | |
| 127 | /* |