[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Evan Cheng
evan.cheng at apple.com
Wed May 24 17:54:45 PDT 2006
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.132 -> 1.133
---
Log message:
CALL node change: now containing signness of each argument.
---
Diffs of the changes: (+3 -3)
SelectionDAGNodes.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.132 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.133
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.132 Tue May 16 17:52:27 2006
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Wed May 24 19:54:33 2006
@@ -125,10 +125,10 @@
FORMAL_ARGUMENTS,
/// RV1, RV2...RVn, CHAIN = CALL(CHAIN, CC#, ISVARARG, ISTAILCALL, CALLEE,
- /// ARG0, ARG1, ... ARGn)
+ /// ARG0, SIGN0, ARG1, SIGN1, ... ARGn, SIGNn)
/// This node represents a fully general function call, before the legalizer
- /// runs. This has one result value for each argument, plus a chain result.
- /// It must be custom legalized.
+ /// runs. This has one result value for each argument / signness pair, plus
+ /// a chain result. It must be custom legalized.
CALL,
// EXTRACT_ELEMENT - This is used to get the first or second (determined by
More information about the llvm-commits
mailing list