diff options
author | Chris Lattner <sabre@nondot.org> | 2005-11-20 22:55:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-11-20 22:55:57 +0000 |
commit | 2d4ff48cf21c93691ae5773accfa8f9a23a0e67e (patch) | |
tree | 85eec120fb8690b07fdd5dca8f291258eaf32172 | |
parent | d1061ac8d15a6b5e1eafdf7b6d4f2eb402eacc30 (diff) | |
download | bcm5719-llvm-2d4ff48cf21c93691ae5773accfa8f9a23a0e67e.tar.gz bcm5719-llvm-2d4ff48cf21c93691ae5773accfa8f9a23a0e67e.zip |
add a new node type
llvm-svn: 24436
-rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h index 9af8d4efe5e..b98a3f022bf 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h @@ -106,6 +106,13 @@ namespace ISD { // two values of the same integer value type, this produces a value twice as // big. Like EXTRACT_ELEMENT, this can only be used before legalization. BUILD_PAIR, + + // MERGE_VALUES - This node takes multiple discrete operands and returns + // them all as its individual results. This nodes has exactly the same + // number of inputs and outputs, and is only valid before legalization. + // This node is useful for some pieces of the code generator that want to + // think about a single node with multiple results, not multiple nodes. + MERGE_VALUES, // Simple integer binary arithmetic operators. ADD, SUB, MUL, SDIV, UDIV, SREM, UREM, |