[llvm] Nvptx port LowerBITCAST to SelectionDAG (PR #120903)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Sun Dec 22 08:19:21 PST 2024


================
@@ -2619,7 +2595,7 @@ NVPTXTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
   case ISD::BUILD_VECTOR:
     return LowerBUILD_VECTOR(Op, DAG);
   case ISD::BITCAST:
-    return LowerBITCAST(Op, DAG);
+    return SDValue();
----------------
RKSimon wrote:

Can you remove this case entirely? You might need to remove any custom setOperationAction entries for BITCAST?

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


More information about the llvm-commits mailing list