mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-01 03:33:42 +00:00
Fix analysis of the Burg program
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5401 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d9bdbaac96
commit
6f6fef8c26
@ -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