[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.4.0 (alpha) now available
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Mon, 1 Jul 2019 09:30:47 -0300
>> We also welcome feedback on the listings output by luac -l -l, because
>> luac has been rewritten to account for the new VM instructions.
>
> Shifts are displayed in non-user-friendly way.
Thanks for spotting this. Here is a fix (use sc instead of c):
case OP_SHRI:
printf("%d %d %d",a,b,sc);
break;
case OP_SHLI:
printf("%d %d %d",a,b,sc);
break;