[PATCH] D135455: [AArch64] SME2 Single-multi vector ternary int/FP 2 and 4 registers
Caroline via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 12 09:33:19 PDT 2022
CarolineConcatto marked 9 inline comments as done.
CarolineConcatto added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp:3143
+ if (DotPosition != StringRef::npos) {
+ const auto &KindRes =
+ parseVectorKind(Name.drop_front(DotPosition), RegKind::Matrix);
----------------
sdesmalen wrote:
> drop const?
It complains:
: cannot bind non-const lvalue reference of type ‘llvm::Optional<std::pair<int, int> >&’ to an rvalue of type ‘llvm::Optional<std::pair<int, int> >’
parseVectorKind(Name.drop_front(DotPosition), RegKind::Matrix);
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D135455/new/
https://reviews.llvm.org/D135455
More information about the llvm-commits
mailing list