On 13 July 2016 at 14:07, Stefan Pejic stefan.pejic@rt-rk.com wrote:
Hello,
I ran into an issue with asm_intcomp. Is anyone working on this at the moment?
I'm not looking at that.
Also, I noticed that enabling assertions in src/Makefile causes some tests failures. And that's happening only after the latest merges.
I think the assert in asm_sload: lua_assert(!irt_isint(t) || (ir->op2 & (IRSLOAD_CONVERT|IRSLOAD_FRAME))); should be lua_assert(LJ_DUALNUM || !irt_isint(t) || (ir->op2 & (IRSLOAD_CONVERT|IRSLOAD_FRAME)));
which would match the definition in lj_asm_x86.h. Does that fix the problem you see?
Charles