Implement new fpowi node
authorChris Lattner <sabre@nondot.org>
Sat, 9 Sep 2006 05:55:44 +0000 (05:55 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 9 Sep 2006 05:55:44 +0000 (05:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30223 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/SelectionDAGNodes.h

index f1cdb633e16ec0b2bbc845fee0b3710b60ddedb3..b154e6a3bffbfcedc35a3d3f75a3944dff659908 100644 (file)
@@ -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