[PATCH] D80155: [AMDGPU] Fixed selection error for 64 bit extract_subvector
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon May 18 14:06:15 PDT 2020
arsenm accepted this revision.
arsenm added inline comments.
This revision is now accepted and ready to land.
================
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);
----------------
I'm assuming v3f64/v3i64 are still missing
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80155/new/
https://reviews.llvm.org/D80155
More information about the llvm-commits
mailing list