Add a new CALL node.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28337 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-05-16 22:52:27 +00:00
parent 6cacaee724
commit 6c0bfc7237

View File

@ -123,6 +123,13 @@ namespace ISD {
/// It must be custom legalized.
///
FORMAL_ARGUMENTS,
/// RV1, RV2...RVn, CHAIN = CALL(CHAIN, CC#, ISVARARG, ISTAILCALL, CALLEE,
/// ARG0, ARG1, ... ARGn)
/// This node represents a fully general function call, before the legalizer
/// runs. This has one result value for each argument, plus a chain result.
/// It must be custom legalized.
CALL,
// 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