| 2933 | } |
| 2934 | |
| 2935 | void asCByteInstruction::AddAfter(asCByteInstruction *nextCode) |
| 2936 | { |
| 2937 | if( next ) |
| 2938 | next->prev = nextCode; |
| 2939 | |
| 2940 | nextCode->next = next; |
| 2941 | nextCode->prev = this; |
| 2942 | next = nextCode; |
| 2943 | } |
| 2944 | |
| 2945 | void asCByteInstruction::AddBefore(asCByteInstruction *prevCode) |
| 2946 | { |