aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-18 19:26:18 +0000
committerChris Lattner <sabre@nondot.org>2005-01-18 19:26:18 +0000
commitc7ba0eb5eb170daeb13ed97b23f1283f13bb33eb (patch)
tree8e40d0296df4c5902d658c38751b89fd05d3f7c2 /include/llvm/CodeGen
parentef5cd1d3cf7d0b20987a545fcd2d0af2bfe6c422 (diff)
downloadexternal_llvm-c7ba0eb5eb170daeb13ed97b23f1283f13bb33eb.zip
external_llvm-c7ba0eb5eb170daeb13ed97b23f1283f13bb33eb.tar.gz
external_llvm-c7ba0eb5eb170daeb13ed97b23f1283f13bb33eb.tar.bz2
Keep track of the returned value type as well.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19669 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index be4c29a..b4f67fe 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -175,7 +175,8 @@ private:
std::map<std::pair<unsigned, std::pair<SDOperand, SDOperand> >,
SDNode *> BinaryOps;
- std::map<std::pair<std::pair<SDOperand, SDOperand>, ISD::CondCode>,
+ std::map<std::pair<std::pair<SDOperand, SDOperand>,
+ std::pair<ISD::CondCode, MVT::ValueType> >,
SetCCSDNode*> SetCCs;
std::map<std::pair<SDOperand, std::pair<SDOperand, MVT::ValueType> >,