[PATCH] D78494: [AMDGPU][CODEGEN] Added 'A' constraint for inline assembler
Dmitry Preobrazhensky via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 5 07:31:11 PDT 2020
dp marked an inline comment as done.
dp added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/SIISelLowering.cpp:10735
+ } else if (BuildVectorSDNode *V = dyn_cast<BuildVectorSDNode>(Op)) {
+ if (Size != 16 || Op.getNumOperands() != 2)
+ return;
----------------
Should we enforce this limitation? GCC seems to allow arbitrary vector size and type provided that all elements are equal and may be inlined.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78494/new/
https://reviews.llvm.org/D78494
More information about the llvm-commits
mailing list