Skip to content

Commit 457bedf

Browse files
committed
DAG: Fix not handling atomic fmin/fmax in dumper
1 parent 0387254 commit 457bedf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
9696
case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
9797
case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
9898
case ISD::ATOMIC_LOAD_FADD: return "AtomicLoadFAdd";
99+
case ISD::ATOMIC_LOAD_FMIN: return "AtomicLoadFMin";
100+
case ISD::ATOMIC_LOAD_FMAX: return "AtomicLoadFMax";
99101
case ISD::ATOMIC_LOAD_UINC_WRAP:
100102
return "AtomicLoadUIncWrap";
101103
case ISD::ATOMIC_LOAD_UDEC_WRAP:

0 commit comments

Comments
 (0)