gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-835


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-835-gd12f05f
Date: Tue, 08 Mar 2016 05:14:19 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, gawk-4.1-stable has been updated
       via  d12f05fc27089821c78a53858f8ca60ef039d8a1 (commit)
      from  13927d9dec274f6c188005a9d87e097e225a1799 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=d12f05fc27089821c78a53858f8ca60ef039d8a1

commit d12f05fc27089821c78a53858f8ca60ef039d8a1
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Mar 8 07:13:53 2016 +0200

    Fix duplicate case in debug.c.

diff --git a/ChangeLog b/ChangeLog
index 76ff755..fa434b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-03-08         Arnold D. Robbins     <address@hidden>
+
+       * profile.c (print_instruction): Fix duplicate case not caught
+       by TinyCC. Grrr.
+
 2016-03-07         Arnold D. Robbins     <address@hidden>
 
        * profile.c (print_instruction): Further improvements in
diff --git a/debug.c b/debug.c
index 50bcd89..3a33c4c 100644
--- a/debug.c
+++ b/debug.c
@@ -3817,7 +3817,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;
@@ -3904,6 +3903,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);

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |    5 +++++
 debug.c   |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]