[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h

Chris Lattner lattner at cs.uiuc.edu
Tue Apr 11 14:30:54 PDT 2006



Changes in directory llvm/include/llvm/CodeGen:

SelectionDAGNodes.h updated: 1.127 -> 1.128
---
Log message:

new dag node


---
Diffs of the changes:  (+8 -0)

 SelectionDAGNodes.h |    8 ++++++++
 1 files changed, 8 insertions(+)


Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.127 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.128
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.127	Sat Apr  8 17:16:01 2006
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h	Tue Apr 11 16:30:42 2006
@@ -113,6 +113,14 @@
 
     // UNDEF - An undefined node
     UNDEF,
+    
+    /// FORMAL_ARGUMENTS(CC#, ISVARARG) - This node represents the formal
+    /// arguments for a function.  CC# is a Constant value indicating the
+    /// calling convention of the function, and ISVARARG is a flag that
+    /// indicates whether the function is varargs or not.  This node has one
+    /// result value for each incoming argument, and is typically custom
+    /// legalized.
+    FORMAL_ARGUMENTS,
 
     // 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






More information about the llvm-commits mailing list