diff options
author | Chris Lattner <sabre@nondot.org> | 2006-08-14 20:12:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-08-14 20:12:44 +0000 |
commit | 130fc13506b4da64981632c83734721a8b5b2d2d (patch) | |
tree | f46674b90faea553426c52b4e49f9588720c4c58 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 29a965d3c4963b171f0944032d73e57b699e6ff8 (diff) |
Add the actual constant to the hash for ConstantPool nodes. Thanks to
Rafael Espindola for pointing this out.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29669 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 72a7d33001..6fd8ba2a9e 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -583,6 +583,7 @@ SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT, SelectionDAGCSEMap::NodeID ID(Opc, getNodeValueTypes(VT)); ID.AddInteger(Alignment); ID.AddInteger(Offset); + ID.AddPointer(C); void *IP = 0; if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) return SDOperand(E, 0); |