[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Chris Lattner
lattner at cs.uiuc.edu
Wed Sep 28 15:27:02 PDT 2005
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.67 -> 1.68
---
Log message:
Add FP versions of the binary operators, keeping the int and fp worlds seperate.
---
Diffs of the changes: (+4 -1)
SelectionDAGNodes.h | 5 ++++-
1 files changed, 4 insertions(+), 1 deletion(-)
Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.67 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.68
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.67 Thu Sep 1 19:14:40 2005
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Wed Sep 28 17:26:50 2005
@@ -105,8 +105,11 @@
BUILD_PAIR,
- // Simple binary arithmetic operators.
+ // Simple integer binary arithmetic operators.
ADD, SUB, MUL, SDIV, UDIV, SREM, UREM,
+
+ // Simple binary floating point operators.
+ FADD, FSUB, FMUL, FDIV, FREM,
// MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing
// an unsigned/signed value of type i[2*n], then return the top part.
More information about the llvm-commits
mailing list