[llvm] [AMDGPU] Accept arbitrary sized sources in CalculateByteProvider (PR #70240)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 8 00:29:43 PST 2023


================
@@ -11114,9 +11125,11 @@ calculateByteProvider(const SDValue &Op, unsigned Index, unsigned Depth,
     return std::nullopt;
   }
 
-  case ISD::BSWAP:
+  case ISD::BSWAP: {
+    if (IsVec) return std::nullopt;
----------------
arsenm wrote:

new line 

https://github.com/llvm/llvm-project/pull/70240


More information about the llvm-commits mailing list