[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h

Chris Lattner lattner at cs.uiuc.edu
Thu Feb 17 12:17:14 PST 2005



Changes in directory llvm/include/llvm/CodeGen:

SelectionDAG.h updated: 1.18 -> 1.19
---
Log message:

Map doubles from integers, not the double itself.


---
Diffs of the changes:  (+1 -1)

 SelectionDAG.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.18 llvm/include/llvm/CodeGen/SelectionDAG.h:1.19
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.18	Sat Jan 22 22:36:06 2005
+++ llvm/include/llvm/CodeGen/SelectionDAG.h	Thu Feb 17 14:16:58 2005
@@ -199,7 +199,7 @@
 
   std::map<const GlobalValue*, SDNode*> GlobalValues;
   std::map<std::pair<uint64_t, MVT::ValueType>, SDNode*> Constants;
-  std::map<std::pair<double, MVT::ValueType>, SDNode*> ConstantFPs;
+  std::map<std::pair<uint64_t, MVT::ValueType>, SDNode*> ConstantFPs;
   std::map<int, SDNode*> FrameIndices;
   std::map<unsigned, SDNode*> ConstantPoolIndices;
   std::map<MachineBasicBlock *, SDNode*> BBNodes;






More information about the llvm-commits mailing list