[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Jan 18 11:26:33 PST 2005
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAG.h updated: 1.15 -> 1.16
---
Log message:
Keep track of the returned value type as well.
---
Diffs of the changes: (+2 -1)
Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.15 llvm/include/llvm/CodeGen/SelectionDAG.h:1.16
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.15 Mon Jan 17 20:51:41 2005
+++ llvm/include/llvm/CodeGen/SelectionDAG.h Tue Jan 18 13:26:18 2005
@@ -175,7 +175,8 @@
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> >,
More information about the llvm-commits
mailing list