diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-10-21 23:01:01 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-10-21 23:01:01 +0000 |
commit | 7c93690be029a86d98cdad59ec4cb858c47e284f (patch) | |
tree | efb665dfdc5fbfe52ab4ccba2803214e33c4cf5b /llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | |
parent | d6511b49ace8e3d55ad43beb2cb142022a8032cc (diff) | |
download | bcm5719-llvm-7c93690be029a86d98cdad59ec4cb858c47e284f.tar.gz bcm5719-llvm-7c93690be029a86d98cdad59ec4cb858c47e284f.zip |
Add minnum / maxnum codegen
llvm-svn: 220342
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp index c10803f55b7..1871e3defb0 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp @@ -141,6 +141,8 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { // Unary operators case ISD::FABS: return "fabs"; + case ISD::FMINNUM: return "fminnum"; + case ISD::FMAXNUM: return "fmaxnum"; case ISD::FNEG: return "fneg"; case ISD::FSQRT: return "fsqrt"; case ISD::FSIN: return "fsin"; |