From 10f39c27ee7378cd36676fe0450a0094625b66c5 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. llvm-svn: 20229 --- 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;