diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-09 06:03:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-09 06:03:30 +0000 |
commit | f0359b343a45a78441c0cc284aaad13172040f82 (patch) | |
tree | 4d10fd15638695cf1ff1562212d304fe71a81a77 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | a4b7de8669a1c0db74d3a8783cd631f0fb9e6766 (diff) | |
download | bcm5719-llvm-f0359b343a45a78441c0cc284aaad13172040f82.tar.gz bcm5719-llvm-f0359b343a45a78441c0cc284aaad13172040f82.zip |
Implement the fpowi now by lowering to a libcall
llvm-svn: 30225
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 4fa168fccde..044a2fa976f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2404,6 +2404,7 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::FSQRT: return "fsqrt"; case ISD::FSIN: return "fsin"; case ISD::FCOS: return "fcos"; + case ISD::FPOWI: return "fpowi"; // Binary operators case ISD::ADD: return "add"; |