diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-03-08 07:15:13 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-03-08 07:15:13 +0200 |
commit | 860e3ea8ad4343318d7c8886a05bcb6551dbe618 (patch) | |
tree | 1d675622837cec4aebbe0d86a863a38da3739fb6 /debug.c | |
parent | 2b8aedce5afcb4ea7ad8c4409488f327fa09daf1 (diff) | |
parent | 6b61626bc554ec39c89bfef45716671fa16331d1 (diff) | |
download | egawk-860e3ea8ad4343318d7c8886a05bcb6551dbe618.tar.gz egawk-860e3ea8ad4343318d7c8886a05bcb6551dbe618.tar.bz2 egawk-860e3ea8ad4343318d7c8886a05bcb6551dbe618.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3825,7 +3825,6 @@ print_instruction(INSTRUCTION *pc, Func_print print_func, FILE *fp, int in_dump) print_func(fp, "[switch_start = %p] [switch_end = %p]\n", (pc+1)->switch_start, (pc+1)->switch_end); break; - case Op_K_case: case Op_K_default: print_func(fp, "[stmt_start = %p] [stmt_end = %p]\n", pc->stmt_start, pc->stmt_end); break; @@ -3912,6 +3911,7 @@ print_instruction(INSTRUCTION *pc, Func_print print_func, FILE *fp, int in_dump) case Op_K_continue: print_func(fp, "[target_jmp = %p]\n", pc->target_jmp); break; + case Op_K_exit: print_func(fp, "[target_end = %p] [target_atexit = %p]\n", pc->target_end, pc->target_atexit); |