mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Fix analysis of the Burg program
llvm-svn: 5401
This commit is contained in:
parent
eb138baf54
commit
bd72aa79fc
@ -448,7 +448,7 @@ void DSNode::MergeNodes(DSNodeHandle& CurNodeH, DSNodeHandle& NH) {
|
||||
// Make all of the outgoing links of *NH now be outgoing links of
|
||||
// this. This can cause recursive merging!
|
||||
//
|
||||
for (unsigned i = 0; i < NSize; i += DS::PointerSize) {
|
||||
for (unsigned i = 0; i < NH.getNode()->getSize(); i += DS::PointerSize) {
|
||||
DSNodeHandle &Link = NH.getNode()->getLink(i);
|
||||
if (Link.getNode()) {
|
||||
// Compute the offset into the current node at which to
|
||||
|
Loading…
x
Reference in New Issue
Block a user