dotgnu-pnet-commits
[Top][All Lists]
Advanced

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

[dotgnu-pnet-commits] [SCM] DotGNU Portable.NET Just In Time compiler (l


From: Aleksey Demakov
Subject: [dotgnu-pnet-commits] [SCM] DotGNU Portable.NET Just In Time compiler (libjit) branch, master, updated. f6a09759b7deb46f1d5f83561e5e75a65b9a44b3
Date: Wed, 09 Dec 2009 18:01:32 +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 "DotGNU Portable.NET Just In Time compiler (libjit)".

The branch, master has been updated
       via  f6a09759b7deb46f1d5f83561e5e75a65b9a44b3 (commit)
      from  9ede4692bdb2318789cfaeff30cec2be361af864 (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.savannah.gnu.org/cgit/libjit.git/commit/?id=f6a09759b7deb46f1d5f83561e5e75a65b9a44b3

commit f6a09759b7deb46f1d5f83561e5e75a65b9a44b3
Author: Aleksey Demakov <address@hidden>
Date:   Thu Dec 10 00:00:16 2009 +0600

    Bail out on previously assigned label

diff --git a/ChangeLog b/ChangeLog
index 5727866..fa13da9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2009-12-09  Aleksey Demakov  <address@hidden>
 
+       * jit/jit-block.c (_jit_block_record_label): bail out on previously
+       assigned label.
+
        * jit/jit-block.c (merge_empty): fix label merging.
 
        * jit/jit-internal.h, jit/jit-insn.c (jit_insn_address_of_label)
diff --git a/jit/jit-block.c b/jit/jit-block.c
index 1f68a12..ea4a0bb 100644
--- a/jit/jit-block.c
+++ b/jit/jit-block.c
@@ -996,7 +996,7 @@ _jit_block_record_label(jit_block_t block, jit_label_t 
label)
        /* Bail out on previously recorded label */
        if(builder->label_info[label].block)
        {
-               abort();
+               return 0;
        }
 
        /* Record label info to the table */

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

Summary of changes:
 ChangeLog       |    3 +++
 jit/jit-block.c |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
DotGNU Portable.NET Just In Time compiler (libjit)




reply via email to

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