add a new node type

llvm-svn: 24436
This commit is contained in:
Chris Lattner 2005-11-20 22:55:57 +00:00
parent d1061ac8d1
commit 2d4ff48cf2
1 changed files with 7 additions and 0 deletions

View File

@ -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,