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
Describe the bug If you try to use a negative number in a condition, the result is "undefined"
To Reproduce Steps to reproduce the behavior:
Write code like this:
var data = db.Setting if data == -102 #some code end
Result will be:
l r3 db Setting beqz undefined if0exit #some code if0exit:
Expected behavior Expected code:
l r3 db Setting seq r15 r3 -102 beqz r15 if0exit #some code if0exit:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
If you try to use a negative number in a condition, the result is "undefined"
To Reproduce
Steps to reproduce the behavior:
Write code like this:
Result will be:
Expected behavior
Expected code:
The text was updated successfully, but these errors were encountered: