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
[PATCH] MipsAsmParser/O32: Don't add redundant $ to $-prefixed symbol in the la macro (#80644)
When parsing the la macro, we add a duplicate $ prefix in getOrCreateSymbol, leading to error: Undefined temporary symbol $$yy for code like:
la
$
getOrCreateSymbol
error: Undefined temporary symbol $$yy
xx: la $2,$yy $yy: nop
Remove the duplicate prefix.
In addition, recognize .L-prefixed symbols as local for O32.
.L
See: #65020.
The text was updated successfully, but these errors were encountered:
/cherry-pick c007fbb
Sorry, something went wrong.
/pull-request #81810
@llvm/issue-subscribers-backend-mips
Author: Brad Smith (brad0)
No branches or pull requests
[PATCH] MipsAsmParser/O32: Don't add redundant $ to $-prefixed symbol
in the la macro (#80644)
When parsing the
la
macro, we add a duplicate$
prefix ingetOrCreateSymbol
,leading to
error: Undefined temporary symbol $$yy
for code like:Remove the duplicate prefix.
In addition, recognize
.L
-prefixed symbols as local for O32.See: #65020.
The text was updated successfully, but these errors were encountered: