CALL node change: now containing signness of each argument.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28460 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-05-25 00:54:33 +00:00
parent 6a3d5a62f0
commit 9657eac240

View File

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