aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-09 05:55:44 +0000
committerChris Lattner <sabre@nondot.org>2006-09-09 05:55:44 +0000
commitdd2afb0e1f65bc41d2c0053468fcddfd696a8231 (patch)
tree68d0fea2cf096d1d4ff2572d07d1e8b0a240f86d /include
parentf3f333dbd67afde147165bb5ba87889d76a6f436 (diff)
downloadexternal_llvm-dd2afb0e1f65bc41d2c0053468fcddfd696a8231.zip
external_llvm-dd2afb0e1f65bc41d2c0053468fcddfd696a8231.tar.gz
external_llvm-dd2afb0e1f65bc41d2c0053468fcddfd696a8231.tar.bz2
Implement new fpowi node
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30223 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index f1cdb63..b154e6a 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -361,9 +361,10 @@ namespace ISD {
// conversions, but that is a noop, deleted by getNode().
BIT_CONVERT,
- // FNEG, FABS, FSQRT, FSIN, FCOS - Perform unary floating point negation,
- // absolute value, square root, sine and cosine operations.
- FNEG, FABS, FSQRT, FSIN, FCOS,
+ // FNEG, FABS, FSQRT, FSIN, FCOS, FPOWI - Perform unary floating point
+ // negation, absolute value, square root, sine and cosine, and powi
+ // operations.
+ FNEG, FABS, FSQRT, FSIN, FCOS, FPOWI,
// Other operators. LOAD and STORE have token chains as their first
// operand, then the same operands as an LLVM load/store instruction, then a