diff options
author | Chris Lattner <sabre@nondot.org> | 2005-02-17 20:16:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-02-17 20:16:58 +0000 |
commit | b29cb29364d3e22f062c695d2d5740dda42d8e8e (patch) | |
tree | a2fbc37be7809bf2e58bc4fdb1e740ae19057292 | |
parent | aa781b34040f07db00fb4b59cb567e6ad9ef5861 (diff) | |
download | external_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
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 2 |
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; |