[llvm] [Xtensa] Implement Xtensa Floating Point Option. (PR #136086)
Andrei Safronov via llvm-commits
llvm-commits at lists.llvm.org
Tue May 27 02:56:54 PDT 2025
================
@@ -596,25 +597,33 @@ ParseStatus XtensaAsmParser::parseRegister(OperandVector &Operands,
if (AllowParens && getLexer().is(AsmToken::LParen)) {
size_t ReadCount = getLexer().peekTokens(Buf);
if (ReadCount == 2 && Buf[1].getKind() == AsmToken::RParen) {
- if ((Buf[0].getKind() == AsmToken::Integer) && (!SR))
+ if ((Buf[0].getKind() == AsmToken::Integer) &&
+ (RegType == Xtensa_Generic))
----------------
andreisfr wrote:
Fixed
https://github.com/llvm/llvm-project/pull/136086
More information about the llvm-commits
mailing list