summaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
diff options
context:
space:
mode:
authorwizardengineer <juliuswoosebert@gmail.com>2025-11-05 10:51:08 -0500
committerwizardengineer <juliuswoosebert@gmail.com>2025-11-06 12:06:17 -0500
commit80a83ad4739916cbdd1fe43cebe8339c5d7b1f61 (patch)
tree4de7636f3e6d9f0acafad97bfc3f25075b8997ed /llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
parented45c0571eb35339f7c3562edbb3b27d67594acd (diff)
[ConstantTime][LLVM] Add llvm.ct.select intrinsic with generic SelectionDAG loweringusers/wizardengineer/ct-select-core
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
index 77377d348b83..aafbc5e4401c 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
@@ -332,6 +332,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
case ISD::FPOWI: return "fpowi";
case ISD::STRICT_FPOWI: return "strict_fpowi";
case ISD::SETCC: return "setcc";
+ case ISD::CTSELECT: return "ctselect";
case ISD::SETCCCARRY: return "setcccarry";
case ISD::STRICT_FSETCC: return "strict_fsetcc";
case ISD::STRICT_FSETCCS: return "strict_fsetccs";