[llvm] [RFC] implement convergence control in MIR using SelectionDAG (PR #71785)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 12 00:59:11 PST 2024
================
@@ -285,6 +285,27 @@ Register InstrEmitter::getVR(SDValue Op,
return I->second;
}
+static bool isConvergenceCtrlIntrinsic(SDValue Op) {
+ if (Op->isMachineOpcode()) {
----------------
arsenm wrote:
The not-machine opcode case should never reach InstrEmitter
https://github.com/llvm/llvm-project/pull/71785
More information about the llvm-commits
mailing list