commit | 1d744bbe789014cd057ff17b72ca154d52f144d2 | [log] [tgz] |
---|---|---|
author | Dan Gohman <djg@cray.com> | Thu Oct 11 23:06:37 2007 +0000 |
committer | Dan Gohman <djg@cray.com> | Thu Oct 11 23:06:37 2007 +0000 |
tree | 053922f4ae95030c7a5c8e33eabb1cb9e8b33231 | |
parent | cea339612188c165924e00d437e3ad5fdda9bf23 [diff] [blame] |
Add an ISD::FPOW node type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42879 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 2ac30f6..3e798bc 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -3602,6 +3602,7 @@ case ISD::FSIN: return "fsin"; case ISD::FCOS: return "fcos"; case ISD::FPOWI: return "fpowi"; + case ISD::FPOW: return "fpow"; // Binary operators case ISD::ADD: return "add";