[llvm] 9578db9 - DAG: Handle atomic fsub in node dumper

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 12 23:23:41 PDT 2024


Author: Matt Arsenault
Date: 2024-09-13T10:22:27+04:00
New Revision: 9578db9c11294cdf2b08a89a86a3d7c3dc7c98c0

URL: https://github.com/llvm/llvm-project/commit/9578db9c11294cdf2b08a89a86a3d7c3dc7c98c0
DIFF: https://github.com/llvm/llvm-project/commit/9578db9c11294cdf2b08a89a86a3d7c3dc7c98c0.diff

LOG: DAG: Handle atomic fsub in node 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 1b663eae1fcfc8..56fc538172f9fc 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
@@ -97,6 +97,7 @@ 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_FSUB:           return "AtomicLoadFSub";
   case ISD::ATOMIC_LOAD_FMIN:           return "AtomicLoadFMin";
   case ISD::ATOMIC_LOAD_FMAX:           return "AtomicLoadFMax";
   case ISD::ATOMIC_LOAD_UINC_WRAP:


        


More information about the llvm-commits mailing list