[PATCH] D142833: [RISCV] Move FRM parsing in the assembler to a custom operand parser.
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Jan 29 11:49:18 PST 2023
craig.topper added inline comments.
================
Comment at: llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp:905
+ Op->EndLoc = S;
+ Op->IsRV64 = IsRV64;
+ return Op;
----------------
luismarques wrote:
> I suppose you kept this because it was easier to initialize it (vs asserting on access), rather than it actually being needed for a rounding mode operand?
Are you referring to `IsRV64`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142833/new/
https://reviews.llvm.org/D142833
More information about the llvm-commits
mailing list