1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Add a chain to FORMAL_ARGUMENTS.

llvm-svn: 28319
This commit is contained in:
Chris Lattner 2006-05-16 06:43:59 +00:00
parent 15fdb12773
commit f88654d468

View File

@ -115,12 +115,13 @@ namespace ISD {
// UNDEF - An undefined node // UNDEF - An undefined node
UNDEF, UNDEF,
/// FORMAL_ARGUMENTS(CC#, ISVARARG) - This node represents the formal /// FORMAL_ARGUMENTS(CHAIN, CC#, ISVARARG) - This node represents the formal
/// arguments for a function. CC# is a Constant value indicating the /// arguments for a function. CC# is a Constant value indicating the
/// calling convention of the function, and ISVARARG is a flag that /// calling convention of the function, and ISVARARG is a flag that
/// indicates whether the function is varargs or not. This node has one /// indicates whether the function is varargs or not. This node has one
/// result value for each incoming argument, and is typically custom /// result value for each incoming argument, plus one for the output chain.
/// legalized. /// It must be custom legalized.
///
FORMAL_ARGUMENTS, FORMAL_ARGUMENTS,
// EXTRACT_ELEMENT - This is used to get the first or second (determined by // EXTRACT_ELEMENT - This is used to get the first or second (determined by