From b29cb29364d3e22f062c695d2d5740dda42d8e8e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 17 Feb 2005 20:16:58 +0000 Subject: [PATCH] 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 --- include/llvm/CodeGen/SelectionDAG.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;