[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Nate Begeman
natebegeman at mac.com
Fri Apr 1 14:34:51 PST 2005
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.23 -> 1.24
---
Log message:
Add ISD::UNDEF node
Teach the SelectionDAG code how to expand and promote it
Have PPC32 LowerCallTo generate ISD::UNDEF for int arg regs used up by fp
arguments, but not shadowing their value. This allows us to do the right
thing with both fixed and vararg floating point arguments.
---
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.23 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.24
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.23 Thu Mar 31 15:30:35 2005
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Fri Apr 1 16:34:39 2005
@@ -74,6 +74,9 @@
// out.
ImplicitDef,
+ // UNDEF - An undefined node
+ UNDEF,
+
// EXTRACT_ELEMENT - This is used to get the first or second (determined by
// a Constant, which is required to be operand #1), element of the aggregate
// value specified as operand #0. This is only for use before legalization,
More information about the llvm-commits
mailing list