summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-02 04:58:28 +0000
committerChris Lattner <sabre@nondot.org>2005-04-02 04:58:28 +0000
commit7366fd39727180a3261dd99e3797f89979d74e66 (patch)
treea28a760d7dbba509c50284d789fe67cfeb5e116e /include
parentb1f26fb921d5bb47160f087244d93171090a3e5e (diff)
downloadllvm-7366fd39727180a3261dd99e3797f89979d74e66.tar.gz
llvm-7366fd39727180a3261dd99e3797f89979d74e66.tar.bz2
llvm-7366fd39727180a3261dd99e3797f89979d74e66.tar.xz
Add two happy new nodes for FABS and FNEG
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21007 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index 5b8136b49f..568f66c9f6 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -164,6 +164,10 @@ namespace ISD {
// FP_EXTEND - Extend a smaller FP type into a larger FP type.
FP_EXTEND,
+ // FNEG, FABS - Perform unary floating point negation and absolute value
+ // operations.
+ FNEG, FABS,
+
// Other operators. LOAD and STORE have token chains as their first
// operand, then the same operands as an LLVM load/store instruction.
LOAD, STORE,