mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Fix a bug introduced in my last commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40542 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -117,12 +117,18 @@ bool MemoryDependenceAnalysis::nonLocalHelper(Instruction* query,
|
||||
visited.insert(block);
|
||||
|
||||
bool inserted = false;
|
||||
bool predOnStack = false;
|
||||
for (pred_iterator PI = pred_begin(block), PE = pred_end(block);
|
||||
PI != PE; ++PI)
|
||||
if (!visited.count(*PI))
|
||||
inserted |= nonLocalHelper(query, *PI, resp, visited);
|
||||
|
||||
else
|
||||
predOnStack = true;
|
||||
|
||||
visited.erase(block);
|
||||
|
||||
if (!inserted && !predOnStack)
|
||||
resp.insert(std::make_pair(block, None));
|
||||
|
||||
return inserted;
|
||||
}
|
||||
|
Reference in New Issue
Block a user