[llvm] 457bedf - DAG: Fix not handling atomic fmin/fmax in dumper
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 12 01:39:59 PDT 2024
Author: Matt Arsenault
Date: 2024-06-12T10:39:54+02:00
New Revision: 457bedfe393f0baa88545418390cf96c5bc1c437
URL: https://github.com/llvm/llvm-project/commit/457bedfe393f0baa88545418390cf96c5bc1c437
DIFF: https://github.com/llvm/llvm-project/commit/457bedfe393f0baa88545418390cf96c5bc1c437.diff
LOG: DAG: Fix not handling atomic fmin/fmax in dumper
Added:
Modified:
llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
index 52da24b594513..12a7b7f11778d 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
@@ -96,6 +96,8 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
case ISD::ATOMIC_LOAD_FADD: return "AtomicLoadFAdd";
+ case ISD::ATOMIC_LOAD_FMIN: return "AtomicLoadFMin";
+ case ISD::ATOMIC_LOAD_FMAX: return "AtomicLoadFMax";
case ISD::ATOMIC_LOAD_UINC_WRAP:
return "AtomicLoadUIncWrap";
case ISD::ATOMIC_LOAD_UDEC_WRAP:
More information about the llvm-commits
mailing list