We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lua version: 5.1 The code of "and or" syntax cannot be correctly recognized, and a non-existent label of goto will be generated in the output result
example: original code: r6 = r5 > 0 and ((r5 - r4) / r5) or 0;
r6 = r5 > 0 and ((r5 - r4) / r5) or 0;
decompiled code: if r5 > 0 then r6 = (r5 - r4) / r5 or 0 else goto label_74 -- block#22 is visited secondly end
if r5 > 0 then
r6 = (r5 - r4) / r5 or 0
else
goto label_74 -- block#22 is visited secondly
end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
lua version: 5.1
The code of "and or" syntax cannot be correctly recognized, and a non-existent label of goto will be generated in the output result
example:
original code:
r6 = r5 > 0 and ((r5 - r4) / r5) or 0;
decompiled code:
if r5 > 0 then
r6 = (r5 - r4) / r5 or 0
else
goto label_74 -- block#22 is visited secondly
end
The text was updated successfully, but these errors were encountered: