Hi All

I was trying one of the test cases in the “test” directory and it seems  to fail while trying to dump the machine code both on arm32 and arm64.

 

./luajit -jdump=m ../test/tnew.lua

---- TRACE 1 start tnew.lua:1

---- TRACE 1 mcode 316

VM handler failed: ./jit/dis_arm.lua:441: attempt to call upvalue 'concat' (a nil value)

 

Am I doing something wrong ? or is this a known issue ?

 

 

Test case:tnew.lua

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

for i=1, 100 do

    table = {}

end

 

assert(type(table) == "table", "failed to create table")

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

Abhishek Dikshit