[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Evan Cheng
evan.cheng at apple.com
Fri May 26 16:09:22 PDT 2006
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.133 -> 1.134
---
Log message:
Change RET node to include signness information of the return values. e.g.
RET chain, value1, sign1, value2, sign2
---
Diffs of the changes: (+3 -2)
SelectionDAGNodes.h | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.133 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.134
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.133 Wed May 24 19:54:33 2006
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Fri May 26 18:09:09 2006
@@ -414,8 +414,9 @@
BR_CC,
// RET - Return from function. The first operand is the chain,
- // and any subsequent operands are the return values for the
- // function. This operation can have variable number of operands.
+ // and any subsequent operands are pairs of return value and return value
+ // signness for the function. This operation can have variable number of
+ // operands.
RET,
// INLINEASM - Represents an inline asm block. This node always has two
More information about the llvm-commits
mailing list