aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-02-17 20:16:58 +0000
committerChris Lattner <sabre@nondot.org>2005-02-17 20:16:58 +0000
commitb29cb29364d3e22f062c695d2d5740dda42d8e8e (patch)
treea2fbc37be7809bf2e58bc4fdb1e740ae19057292 /include/llvm/CodeGen
parentaa781b34040f07db00fb4b59cb567e6ad9ef5861 (diff)
downloadexternal_llvm-b29cb29364d3e22f062c695d2d5740dda42d8e8e.zip
external_llvm-b29cb29364d3e22f062c695d2d5740dda42d8e8e.tar.gz
external_llvm-b29cb29364d3e22f062c695d2d5740dda42d8e8e.tar.bz2
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
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index 8c65742..4bb1739 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -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;