Map doubles from integers, not the double itself.
authorChris Lattner <sabre@nondot.org>
Thu, 17 Feb 2005 20:16:58 +0000 (20:16 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 17 Feb 2005 20:16:58 +0000 (20:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20229 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/SelectionDAG.h

index 8c65742213dd132f5e268680b2ec67d1867e7865..4bb1739ec12cc9a194e9ad70f304c9ed572e8955 100644 (file)
@@ -199,7 +199,7 @@ private:
 
   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;