[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Chris Lattner
lattner at cs.uiuc.edu
Mon May 15 23:44:11 PDT 2006
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.130 -> 1.131
---
Log message:
Add a chain to FORMAL_ARGUMENTS.
---
Diffs of the changes: (+4 -3)
SelectionDAGNodes.h | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.130 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.131
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.130 Sat Apr 22 13:53:45 2006
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Tue May 16 01:43:59 2006
@@ -115,12 +115,13 @@
// UNDEF - An undefined node
UNDEF,
- /// FORMAL_ARGUMENTS(CC#, ISVARARG) - This node represents the formal
+ /// FORMAL_ARGUMENTS(CHAIN, 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.
+ /// result value for each incoming argument, plus one for the output chain.
+ /// It must be custom legalized.
+ ///
FORMAL_ARGUMENTS,
// EXTRACT_ELEMENT - This is used to get the first or second (determined by
More information about the llvm-commits
mailing list