aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-05-25 00:54:33 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-05-25 00:54:33 +0000
commit9657eac240f21b563bc5f322479a1e2810e1e9de (patch)
tree7a8085b228fbbf6b79ee3c3cfcf4d5514d589d35 /include/llvm
parent6a3d5a62f09d4093468525a07a0143cae0e9df41 (diff)
downloadexternal_llvm-9657eac240f21b563bc5f322479a1e2810e1e9de.zip
external_llvm-9657eac240f21b563bc5f322479a1e2810e1e9de.tar.gz
external_llvm-9657eac240f21b563bc5f322479a1e2810e1e9de.tar.bz2
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
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index 80eaf4b..f21296a 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