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
Hi,
While compiling Nuttx the following error was triggered:
common/xtensa_windowspill.S:153:15: error: expected immediate in range [0, 15] srli a3, a3, 32-(64 / 4)
In 8.3.307, the ISA reference mentions that if the immediate is greater than 15 the instruction should be converted to extui.
At the moment the assembler does not do that and takes the semantics of _srli which generates an error when the argument is not in range [0, 15].
The text was updated successfully, but these errors were encountered:
Closed with a25fd88
Sorry, something went wrong.
No branches or pull requests
Hi,
While compiling Nuttx the following error was triggered:
In 8.3.307, the ISA reference mentions that if the immediate is greater than 15 the instruction should be converted to extui.
At the moment the assembler does not do that and takes the semantics of _srli which generates an error when the argument is not in range [0, 15].
The text was updated successfully, but these errors were encountered: