mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Fix a crash analyzing MultiSource/Benchmarks/MallocBench/gs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21245 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fd1f1ee0ba
commit
af2e3e0859
@ -119,10 +119,9 @@ DSNode::DSNode(const Type *T, DSGraph *G)
|
||||
// DSNode copy constructor... do not copy over the referrers list!
|
||||
DSNode::DSNode(const DSNode &N, DSGraph *G, bool NullLinks)
|
||||
: NumReferrers(0), Size(N.Size), ParentGraph(G),
|
||||
Ty(N.Ty), NodeType(N.NodeType) {
|
||||
Ty(N.Ty), Globals(N.Globals), NodeType(N.NodeType) {
|
||||
if (!NullLinks) {
|
||||
Links = N.Links;
|
||||
Globals = N.Globals;
|
||||
} else
|
||||
Links.resize(N.Links.size()); // Create the appropriate number of null links
|
||||
G->addNode(this);
|
||||
|
Loading…
Reference in New Issue
Block a user