diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-27 22:54:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-27 22:54:56 +0000 |
commit | 26acc890f9de755d07747bec616fa5ae38ae974b (patch) | |
tree | b20eaae60e8c3dea68fc4acba4a05e41a0e55e25 /llvm/lib/Analysis/DataStructure/DataStructure.cpp | |
parent | 54a52e53f0bca8fa44636573c15c4ec8401d360d (diff) | |
download | bcm5719-llvm-26acc890f9de755d07747bec616fa5ae38ae974b.tar.gz bcm5719-llvm-26acc890f9de755d07747bec616fa5ae38ae974b.zip |
fix bug in previous checkin
llvm-svn: 10989
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/DataStructure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/DataStructure.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/DataStructure.cpp b/llvm/lib/Analysis/DataStructure/DataStructure.cpp index 2a0dc998a0e..036b0a11116 100644 --- a/llvm/lib/Analysis/DataStructure/DataStructure.cpp +++ b/llvm/lib/Analysis/DataStructure/DataStructure.cpp @@ -780,7 +780,6 @@ DSNodeHandle ReachabilityCloner::getClonedNH(const DSNodeHandle &SrcNH) { DSNode *DN = new DSNode(*SN, &Dest, true /* Null out all links */); DN->maskNodeTypes(BitsToKeep); NH.setNode(DN); - NH.setOffset(SrcNH.getOffset()); // Next, recursively clone all outgoing links as necessary. Note that // adding these links can cause the node to collapse itself at any time, and |