[PATCH] D80155: [AMDGPU] Fixed selection error for 64 bit extract_subvector

Stanislav Mekhanoshin via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon May 18 14:39:23 PDT 2020


rampitec marked an inline comment as done.
rampitec added inline comments.


================
Comment at: llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp:353
+  setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v2i64, Custom);
+  setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4f64, Custom);
+  setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4i64, Custom);
----------------
arsenm wrote:
> I'm assuming v3f64/v3i64 are still missing
They don't exist in MVT.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D80155/new/

https://reviews.llvm.org/D80155





More information about the llvm-commits mailing list