[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Chris Lattner
lattner at cs.uiuc.edu
Thu Sep 1 17:14:51 PDT 2005
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.66 -> 1.67
---
Log message:
Add a new ANY_EXTEND node, which operates like an extension but has undefined
top bits.
---
Diffs of the changes: (+3 -0)
SelectionDAGNodes.h | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.66 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.67
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.66 Mon Aug 29 21:39:32 2005
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Thu Sep 1 19:14:40 2005
@@ -158,6 +158,9 @@
// ZERO_EXTEND - Used for integer types, zeroing the new bits.
ZERO_EXTEND,
+ // ANY_EXTEND - Used for integer types. The high bits are undefined.
+ ANY_EXTEND,
+
// TRUNCATE - Completely drop the high bits.
TRUNCATE,
More information about the llvm-commits
mailing list