From 9657eac240f21b563bc5f322479a1e2810e1e9de Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Thu, 25 May 2006 00:54:33 +0000 Subject: [PATCH] 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 --- include/llvm/CodeGen/SelectionDAGNodes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 80eaf4b25f5..f21296afac3 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -125,10 +125,10 @@ namespace ISD { FORMAL_ARGUMENTS, /// 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 - /// runs. This has one result value for each argument, plus a chain result. - /// It must be custom legalized. + /// runs. This has one result value for each argument / signness pair, plus + /// a chain result. It must be custom legalized. CALL, // EXTRACT_ELEMENT - This is used to get the first or second (determined by -- 2.34.1