[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Apr 1 20:58:44 PST 2005
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.26 -> 1.27
---
Log message:
Add two happy new nodes for FABS and FNEG
---
Diffs of the changes: (+4 -0)
SelectionDAGNodes.h | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.26 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.27
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.26 Fri Apr 1 21:59:45 2005
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Fri Apr 1 22:58:28 2005
@@ -164,6 +164,10 @@
// 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,
More information about the llvm-commits
mailing list