1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

new dag node

llvm-svn: 27596
This commit is contained in:
Chris Lattner 2006-04-11 21:30:42 +00:00
parent 8d893a86b5
commit bf69078515

View File

@ -113,6 +113,14 @@ namespace ISD {
// UNDEF - An undefined node
UNDEF,
/// FORMAL_ARGUMENTS(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.
FORMAL_ARGUMENTS,
// EXTRACT_ELEMENT - This is used to get the first or second (determined by
// a Constant, which is required to be operand #1), element of the aggregate