[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Libjit-developers] Patch for dpas-parser.y to implement array expre
From: |
Aleksey Demakov |
Subject: |
Re: [Libjit-developers] Patch for dpas-parser.y to implement array expressions |
Date: |
Tue, 20 Dec 2005 16:20:10 +0600 |
Hi Avinash,
2005/12/20, Avinash Atreya <address@hidden>:
> Finally, I have the patch for implementing array expresions in dpas. Spent
> a few hours in the last three days trying to figure out some errors. Finally
> decided to submit it as it looked on Saturday :).
That's simply great!
I have not had a chance to test it yet. I am going to do this a bit later today.
> Also, i am throwing 0 along with the exception, not sure what would be a
> good value to throw. The index which was out of bounds?
I believe you need to replace this
jit_insn_throw(func, 0);
with something like this:
jit_insn_throw(func, jit_value_create_nint_constant(func, jit_type_int, 0));
Regards,
Aleksey