We must set that flag so that mimic stack resolution will put moves
before branch instructions.

Signed-off-by: Tomek Grabiec <tgrab...@gmail.com>
---
 jit/switch-bc.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/jit/switch-bc.c b/jit/switch-bc.c
index b1ece1a..fb3fef2 100644
--- a/jit/switch-bc.c
+++ b/jit/switch-bc.c
@@ -98,8 +98,9 @@ int convert_tableswitch(struct parse_context *ctx)
 
        assert(b1 && b2);
 
-       b1->is_converted = true;
-       b2->is_converted = true;
+       master_bb->has_branch = true;
+       b1->has_branch = true;
+       b2->has_branch = true;
 
        bb_add_successor(master_bb, default_bb );
        bb_add_successor(master_bb, b1);
@@ -183,7 +184,7 @@ int convert_lookupswitch(struct parse_context *ctx)
 
        assert(b1);
 
-       b1->is_converted = true;
+       b1->has_branch = true;
 
        bb_add_successor(master_bb, default_bb );
        bb_add_successor(master_bb, b1);
-- 
1.6.3.3


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Jatovm-devel mailing list
Jatovm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jatovm-devel

Reply via email to