| 1778 | } |
| 1779 | |
| 1780 | void asCByteCode::ObjInfo(int offset, int info) |
| 1781 | { |
| 1782 | if( AddInstruction() < 0 ) |
| 1783 | return; |
| 1784 | |
| 1785 | // Add the special instruction that will be used to tell the exception |
| 1786 | // handler when an object is initialized and deinitialized. |
| 1787 | last->op = asBC_ObjInfo; |
| 1788 | last->size = 0; |
| 1789 | last->stackInc = 0; |
| 1790 | last->wArg[0] = (short)offset; |
| 1791 | *((int*)ARG_DW(last->arg)) = info; |
| 1792 | } |
| 1793 | |
| 1794 | void asCByteCode::Block(bool start) |
| 1795 | { |
no outgoing calls
no test coverage detected