From: Chris Lattner Date: Thu, 17 Feb 2005 20:16:58 +0000 (+0000) Subject: Map doubles from integers, not the double itself. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b29cb29364d3e22f062c695d2d5740dda42d8e8e;p=oota-llvm.git Map doubles from integers, not the double itself. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20229 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 8c65742213d..4bb1739ec12 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -199,7 +199,7 @@ private: std::map GlobalValues; std::map, SDNode*> Constants; - std::map, SDNode*> ConstantFPs; + std::map, SDNode*> ConstantFPs; std::map FrameIndices; std::map ConstantPoolIndices; std::map BBNodes;