[PATCH] D89449: [RISCV] Initial infrastructure for code generation of the RISC-V V-extension
Evandro Menezes via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 16 18:09:15 PDT 2020
evandro marked 3 inline comments as done.
evandro added inline comments.
================
Comment at: llvm/utils/TableGen/GlobalISelEmitter.cpp:190
- if (VT.isVector() && VT.getVectorNumElements() != 1)
+ if (VT.isScalableVector())
+ return None;
----------------
StephenFan wrote:
> Is this if statement necessary?
Yes, as the last test below could prove true.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D89449/new/
https://reviews.llvm.org/D89449
More information about the llvm-commits
mailing list