OSDN Git Service

Keep track of the returned value type as well.
authorChris Lattner <sabre@nondot.org>
Tue, 18 Jan 2005 19:26:18 +0000 (19:26 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 18 Jan 2005 19:26:18 +0000 (19:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19669 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/SelectionDAG.h

index be4c29a..b4f67fe 100644 (file)
@@ -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> >,