diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-03-15 10:04:09 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-03-15 10:04:09 -0700 |
commit | 0daeb7d072ab836ce65e95c91b4133bbba92fda9 (patch) | |
tree | fc869d81a97a89cca3f07cf7220e62feff47e9f8 /src | |
parent | 355a67d3a1605e7321f21162ccf8c236b63e8c23 (diff) |
fix commented-out relooper code
Diffstat (limited to 'src')
-rw-r--r-- | src/relooper/Relooper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/relooper/Relooper.cpp b/src/relooper/Relooper.cpp index c6830158..780a6d59 100644 --- a/src/relooper/Relooper.cpp +++ b/src/relooper/Relooper.cpp @@ -655,7 +655,7 @@ void Relooper::Calculate(Block *Entry) { Block *Curr = *iter; for (BlockBranchMap::iterator iter = Curr->BranchesOut.begin(); iter != Curr->BranchesOut.end(); iter++) { Block *Target = iter->first; - if (!contains(Hoisted, Target) && !contains(NextEntries, Target)) + if (!contains(Hoisted, Target) && !contains(NextEntries, Target)) { // abort this hoisting abort = true; break; |