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
MIPS: Fix asm constraints "f" and "r" for softfloat (#79116)
This include 2 fixes: 1. Disallow 'f' for softfloat. 2. Allow 'r' for softfloat.
Currently, 'f' is accpeted by clang, then LLVM meets an internal error.
'r' is rejected by LLVM by: couldn't allocate input reg for constraint 'r'.
Fixes: #64241, #63632
The text was updated successfully, but these errors were encountered:
/cherry-pick c88beb4
Sorry, something went wrong.
/pull-request #83105
@llvm/issue-subscribers-backend-mips
Author: Brad Smith (brad0)
No branches or pull requests
MIPS: Fix asm constraints "f" and "r" for softfloat (#79116)
This include 2 fixes:
1. Disallow 'f' for softfloat.
2. Allow 'r' for softfloat.
Currently, 'f' is accpeted by clang, then LLVM meets an internal error.
'r' is rejected by LLVM by: couldn't allocate input reg for constraint
'r'.
Fixes: #64241, #63632
The text was updated successfully, but these errors were encountered: