[PATCH] D141984: [RISCV][MC] Add support for experimental zfa extension(FLI instruction not included)
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 2 19:56:25 PST 2023
craig.topper added inline comments.
================
Comment at: llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp:1859
+OperandMatchResultTy RISCVAsmParser::parseRTZArg(OperandVector &Operands) {
+ if (getLexer().isNot(AsmToken::Identifier)) {
----------------
craig.topper wrote:
> Can we reuse parseFRMArg and check the value in isRTZArg()? Add a `DiagnosticType` to `RTZArg` and diagnose in RISCVAsmParser::MatchAndEmitInstruction
This only seems to have been partially done?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D141984/new/
https://reviews.llvm.org/D141984
More information about the llvm-commits
mailing list