[llvm] [NVPTX] TableGen-erate SDNode descriptions (PR #168367)
Artem Belevich via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 18 11:49:08 PST 2025
================
@@ -3314,7 +3224,7 @@ SDValue NVPTXTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
// Generate BrxEnd nodes
SDValue EndOps[] = {Chain.getValue(0), DAG.getBasicBlock(MBBs.back()), Index,
IdV, Chain.getValue(1)};
- SDValue BrxEnd = DAG.getNode(NVPTXISD::BrxEnd, DL, VTs, EndOps);
+ SDValue BrxEnd = DAG.getNode(NVPTXISD::BrxEnd, DL, MVT::Other, EndOps);
----------------
Artem-B wrote:
Is that intentional that we no longer pass in the `MVT::Glue` ?
https://github.com/llvm/llvm-project/pull/168367
More information about the llvm-commits
mailing list